@charset "UTF-8";
.vertical {
  /* Safari */
  -webkit-transform: rotate(-90deg);
  /* Firefox */
  -moz-transform: rotate(-90deg);
  /* IE */
  -ms-transform: rotate(-90deg);
  /* Opera */
  -o-transform: rotate(-90deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  display: inline-block; }

.nopadding {
  padding: 0 !important;
  margin: 0 !important; }

@media screen and (max-width: 768px) {
  .hidden-xs {
    display: none; } }
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 5px;
  border: 2px solid #e24e1b;
  background: white;
  color: #e24e1b; }

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 10px;
  overflow: hidden; }

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */ }

/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px; }

/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible; }

.tooltipster-base .tooltipster-content {
  overflow: hidden; }

/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; }

.tooltipster-arrow span, .tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute; }

.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -7px; }

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -7px; }

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -7px; }

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -7px; }

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto; }

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
  left: 6px; }

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px; }

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
  right: 6px; }

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px; }

.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -7px; }

.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px; }

.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -7px; }

.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px; }

/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity; }

.tooltipster-fade-show {
  opacity: 1; }

.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden; }

.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform; }

.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4); }

.tooltipster-fall {
  top: 0;
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0px !important;
  opacity: 0; }

.tooltipster-slide {
  left: -40px;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15); }

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0px !important;
  opacity: 0; }

/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); }

/* SETTINGS */
body {
  padding-left: 30px;
  position: relative; }

#sideMenu {
  z-index: 1000;
  background: #3C3C3B;
  position: fixed;
  left: -350px;
  top: 0;
  bottom: 0;
  width: 380px; }
  #sideMenu .openMe {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e24e1b;
    color: white;
    min-height: 100px;
    width: 30px; }
    #sideMenu .openMe:hover {
      cursor: pointer; }
    #sideMenu .openMe .hamburger-box {
      margin-left: 10px;
      margin-bottom: 30px;
      margin-top: 5px; }
    #sideMenu .openMe .txt {
      margin-left: -5px;
      font-weight: lighter; }
  #sideMenu .menu {
    position: absolute;
    right: 45px;
    top: 33%; }
    #sideMenu .menu li {
      text-align: right;
      display: block; }
      #sideMenu .menu li a {
        display: inline-block;
        padding-bottom: 5px;
        color: white;
        text-decoration: none;
        text-transform: uppercase; }
        #sideMenu .menu li a:after {
          content: ' •'; }
        #sideMenu .menu li a:hover {
          color: #e24e1b; }
        #sideMenu .menu li a:hover:after {
          content: ' →'; }
  #sideMenu .langbar {
    padding: 5px;
    position: absolute;
    top: 0px;
    left: 0px; }
    #sideMenu .langbar a {
      color: white;
      text-decoration: none;
      font-style: italic;
      font-size: 0.7em; }
      #sideMenu .langbar a:hover {
        opacity: 0.6; }
        #sideMenu .langbar a:hover:after {
          opacity: 1 !important; }
    #sideMenu .langbar a:after {
      text-decoration: none;
      content: ' •'; }
    #sideMenu .langbar a:last-child:after {
      content: ''; }
  #sideMenu .bottomblock {
    position: absolute;
    bottom: 15px;
    left: 35px;
    right: 35px; }
    #sideMenu .bottomblock .row.row-memberspace {
      border-bottom: 1px solid #6f6f6e;
      margin-bottom: 15px;
      padding-bottom: 10px; }
    #sideMenu .bottomblock .row.row-credits {
      font-size: 0.8em;
      color: #6f6f6e; }
      #sideMenu .bottomblock .row.row-credits .credits {
        font-style: italic; }
      #sideMenu .bottomblock .row.row-credits .comon {
        text-align: right; }
    #sideMenu .bottomblock .column {
      padding-left: 3px;
      padding-right: 3px; }
    #sideMenu .bottomblock .espacemembre {
      color: white;
      font-size: 0.8em; }
    #sideMenu .bottomblock .iconsocial {
      color: #6f6f6e; }
    #sideMenu .bottomblock input {
      width: 100%;
      border: 0;
      background: #6f6f6e;
      border-radius: 20px;
      color: #3C3C3B;
      font-size: 0.8em;
      padding-left: 5px; }
    #sideMenu .bottomblock .send {
      border-radius: 50px;
      background: #e24e1b;
      color: white;
      border: 0;
      padding: 5px 10px;
      font-size: 0.7em;
      line-height: 0.7em; }
      #sideMenu .bottomblock .send:hover {
        text-decoration: none;
        background: #cb4618; }

@media only screen and (max-width: 780px) {
  #sideMenu {
    width: 300px;
    left: -270px; } }
#homebackground {
  min-height: 100%;
  z-index: -1; }
  #homebackground #logo {
    margin-top: 50px; }
    #homebackground #logo img {
      max-width: 100%; }
  #homebackground .hello {
    margin-top: 140px;
    width: 500px;
    max-width: 90%; }

@media screen and (max-width: 760px) {
  #homebackground video {
    display: none !important; } }
/* SETTINGS */
#content {
  background: white;
  text-align: center;
  padding: 30px;
  padding-bottom: 100px; }
  #content h2 {
    color: #e24e1b; }
  #content p {
    line-height: 1.7em; }

/* SETTINGS */
.solutionswrapper {
  position: relative;
  vertical-align: middle;
  text-align: center; }

#solutions {
  background-image: url("../images/image04.jpg");
  background-size: cover;
  position: relative; }
  #solutions #solution-left, #solutions #solution-right {
    position: absolute;
    color: white;
    font-size: 1.7em;
    top: 30px;
    z-index: 30;
    -webkit-transition: color 0.5s;
    /* Safari */
    transition: color 0.5s;
    padding: 4px;
    width: 50px;
    height: 50px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    border-radius: 0px;
    border-color: #e24e1b; }
    #solutions #solution-left:hover, #solutions #solution-right:hover {
      color: #e24e1b;
      cursor: pointer; }
  #solutions #solution-left {
    left: 15px; }
  #solutions #solution-right {
    right: 15px; }
  #solutions #solutionbloc {
    margin-top: 50px;
    margin-bottom: 50px;
    vertical-align: middle;
    width: 700px;
    height: 700px;
    position: relative;
    display: inline-block; }
    #solutions #solutionbloc #arrownd {
      position: absolute;
      top: 0;
      left: 0;
      width: 80%;
      height: 80%;
      margin-top: 10%;
      margin-left: 10%; }
  #solutions #contentbloc {
    vertical-align: middle;
    color: white;
    margin-top: 0px;
    display: inline-block;
    width: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    height: 500px;
    text-align: left; }
    #solutions #contentbloc .blocnum {
      background-color: #e24e1b;
      margin-right: 10px;
      color: white;
      padding: 3px 20px 0px;
      border-radius: 50%; }
  #solutions .jcarouselSolutionsresp {
    display: none; }
  #solutions .solutiontext {
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    margin: 0;
    padding-top: 30px;
    z-index: 20;
    position: relative; }
  #solutions .tramme {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  #solutions .bloc {
    background: #e24e1b;
    color: white;
    text-align: center;
    vertical-align: middle;
    padding: 20px;
    border-radius: 10000px;
    position: absolute;
    width: 130px;
    height: 130px;
    margin-left: -65px;
    margin-top: -65px; }
    #solutions .bloc:hover {
      cursor: pointer; }
    #solutions .bloc .title {
      padding-top: 10px;
      font-size: 0.9em;
      font-weight: bold; }
    #solutions .bloc .number {
      font-size: 1.1em; }
    #solutions .bloc .plus {
      width: 30px;
      height: 30px;
      position: absolute;
      left: 50%;
      margin-left: -15px;
      bottom: 15px; }
    #solutions .bloc .outer {
      color: white;
      opacity: 0;
      font-size: 0.7em; }
  #solutions .arrows {
    position: absolute;
    color: white; }
  #solutions .bloc1 {
    top: 15%;
    left: 65%; }
  #solutions .bloc2 {
    top: 36%;
    left: 85%; }
  #solutions .bloc3 {
    top: 64%;
    left: 85%; }
  #solutions .bloc4 {
    top: 85%;
    left: 65%; }
  #solutions .bloc5 {
    top: 85%;
    left: 35%; }
  #solutions .bloc6 {
    top: 64%;
    left: 15%; }
  #solutions .bloc7 {
    top: 36%;
    left: 15%; }
  #solutions .bloc8 {
    top: 15%;
    left: 35%; }
  #solutions #centralBloc {
    width: 280px;
    height: 280px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -140px;
    margin-left: -140px;
    border: 1px solid white;
    border-radius: 100%; }
    #solutions #centralBloc p {
      text-align: center;
      color: white;
      padding-top: 100px; }
    #solutions #centralBloc .itemcenter {
      border-radius: 100%;
      background: #cccccc;
      position: absolute;
      width: 50px;
      height: 50px;
      margin-top: -25px;
      margin-left: -25px; }
      #solutions #centralBloc .itemcenter img {
        width: 100%;
        height: auto; }
      #solutions #centralBloc .itemcenter.mail {
        top: 0%;
        left: 50%; }
      #solutions #centralBloc .itemcenter.web {
        top: 25%;
        left: 95%; }
      #solutions #centralBloc .itemcenter.mobile {
        top: 75%;
        left: 95%; }
      #solutions #centralBloc .itemcenter.shop {
        top: 100%;
        left: 50%; }
      #solutions #centralBloc .itemcenter.social {
        top: 75%;
        left: 5%; }
      #solutions #centralBloc .itemcenter.phone {
        top: 25%;
        left: 5%; }
  #solutions #svgbackground {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%; }
  #solutions .jcarousel-control-solutions-prev,
  #solutions .jcarousel-control-solutions-next {
    z-index: 30 !important;
    top: 10px;
    color: white;
    display: none; }
  #solutions .jcarousel-control-solutions-prev {
    left: 10px; }
  #solutions .jcarousel-control-solutions-next {
    right: 20px; }
  #solutions .jcarousel-solutions-pagination {
    z-index: 6 !important;
    position: relative;
    display: none; }
  #solutions .jcarouselSolutionsresp {
    clear: both; }
    #solutions .jcarouselSolutionsresp ul {
      padding: 0; }
    #solutions .jcarouselSolutionsresp .blocresponsive {
      text-align: center;
      position: relative; }
      #solutions .jcarouselSolutionsresp .blocresponsive:hover {
        cursor: pointer; }
      #solutions .jcarouselSolutionsresp .blocresponsive .outer {
        padding: 10px;
        text-align: left; }
        #solutions .jcarouselSolutionsresp .blocresponsive .outer ul {
          padding-left: 15px; }
      #solutions .jcarouselSolutionsresp .blocresponsive .wrapper {
        background: white;
        overflow: hidden;
        position: relative;
        width: 100%;
        border-bottom: 1px solid #d04819;
        border-top: 1px solid #e97147; }
        #solutions .jcarouselSolutionsresp .blocresponsive .wrapper .outer {
          display: none;
          padding: 25px; }
          #solutions .jcarouselSolutionsresp .blocresponsive .wrapper .outer h1, #solutions .jcarouselSolutionsresp .blocresponsive .wrapper .outer h2 {
            color: #e24e1b; }
        #solutions .jcarouselSolutionsresp .blocresponsive .wrapper .title {
          color: white;
          font-size: 1.5em;
          font-weight: bold;
          padding-bottom: 15px;
          background: #e24e1b;
          padding-top: 15px; }
        #solutions .jcarouselSolutionsresp .blocresponsive .wrapper .plusresponsive {
          display: none;
          width: 100% !important;
          position: absolute;
          bottom: 0px;
          left: 0px;
          background: #e24e1b;
          text-align: center;
          padding: 5px; }
          #solutions .jcarouselSolutionsresp .blocresponsive .wrapper .plusresponsive img {
            display: inline-block;
            width: 32px; }

.parallaxhome {
  position: static;
  height: 200px;
  background: url("../images/image02.jpg");
  background-attachment: fixed; }

/* Small Devices, Tablets */
@media only screen and (max-width: 1024px) {
  #solutions {
    padding-bottom: 30px; }
    #solutions .solutiontext {
      padding-top: 20px;
      position: relative; }
      #solutions .solutiontext h2 {
        color: #e24e1b; }
    #solutions #solwrapper {
      display: none; }

  .jcarousel-control-solutions-prev,
  .jcarousel-control-solutions-next,
  .jcarousel-solutions-pagination,
  .jcarouselSolutionsresp {
    display: block !important; } }
#team {
  background: white;
  text-align: center;
  padding-top: 50px; }
  #team h2 {
    color: #e24e1b;
    font-size: 1.7em; }
  #team #teamToggle {
    display: inline-block;
    width: 400px;
    background: url("../images/menu_ikanbi-144.png");
    background-size: 100%;
    background-repeat: no-repeat;
    height: 50px;
    text-align: left; }
    #team #teamToggle .onglet {
      cursor: pointer;
      display: inline-block;
      font-size: 0.7em;
      color: grey;
      margin-left: 10px; }
      #team #teamToggle .onglet#group {
        margin-left: 110px; }
      #team #teamToggle .onglet#equipe {
        margin-left: 30px; }
      #team #teamToggle .onglet.active {
        color: #e24e1b; }
      #team #teamToggle .onglet#equipe.team40px {
        margin-left: 40px; }
  #team #menuTeam ul {
    margin: 0 auto 0 auto;
    width: 500px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e24e1b; }
  #team #menuTeam .itemMenuTeam {
    display: inline-block;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px; }
    #team #menuTeam .itemMenuTeam:hover {
      cursor: pointer; }
    #team #menuTeam .itemMenuTeam.active {
      color: #e24e1b; }
  #team #contentTeam {
    padding: 25px;
    margin: 0 auto 0 auto;
    width: 500px;
    text-align: justify; }
    #team #contentTeam strong, #team #contentTeam b {
      color: #e24e1b; }

.pannel {
  display: none; }
  .pannel.active {
    display: block; }
  .pannel #teamcontainer {
    text-align: center; }
    .pannel #teamcontainer ul.taglist {
      padding: 0;
      margin: 0 auto 20px auto;
      border-bottom: 1px solid #e24e1b;
      width: 500px;
      padding-bottom: 15px; }
      .pannel #teamcontainer ul.taglist li {
        display: inline-block;
        padding: 0 15px 0 15px;
        text-transform: uppercase;
        cursor: pointer; }
        .pannel #teamcontainer ul.taglist li.active {
          color: #e24e1b; }
    .pannel #teamcontainer ul.items {
      padding: 0;
      margin: 0; }
      .pannel #teamcontainer ul.items li {
        padding: 15px 25px 15px 25px;
        display: inline-block;
        text-align: center;
        width: 33%; }
        .pannel #teamcontainer ul.items li img {
          border-radius: 100%;
          width: 200px; }
        .pannel #teamcontainer ul.items li h2 {
          color: black;
          font-size: 1.2em;
          font-weight: 300;
          margin: 0;
          margin-top: 20px; }
        .pannel #teamcontainer ul.items li h3 {
          color: black;
          font-size: 1.2em;
          font-weight: bold;
          margin: 0; }
        .pannel #teamcontainer ul.items li p {
          color: #e24e1b;
          font-size: 0.9em;
          font-weight: 300;
          margin: 0; }

@media screen and (max-width: 740px) {
  .pannel #teamcontainer ul.items li {
    width: 50%; } }
@media screen and (max-width: 480px) {
  #team #contentTeam {
    width: 100%; }
  #team #menuTeam ul {
    width: 100%;
    padding-left: 0; }

  .pannel #teamcontainer ul.items li {
    width: 100% !important; }

  .pannel #teamcontainer ul.taglist {
    width: 100%; } }
#subscribe {
  background: url("../images/image03.jpg");
  background-size: cover;
  background-position: 50% 50%;
  padding: 30px;
  position: relative; }
  #subscribe .colorfilter {
    background: #e24e1b;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    z-index: 0; }
  #subscribe #msg_newson {
    position: relative; }
  #subscribe .newsonform > div {
    margin-bottom: 5px; }
  #subscribe h2 {
    margin: 0;
    color: white;
    text-align: center;
    z-index: 1;
    position: relative; }
  #subscribe .subtitle {
    color: white;
    text-align: center;
    margin-top: 25px;
    z-index: 1;
    position: relative; }
  #subscribe .newsonform {
    margin-top: 15px;
    color: white; }
    #subscribe .newsonform .txt {
      text-align: right; }
    #subscribe .newsonform .newsoninput {
      width: 100%;
      border-radius: 50px;
      border: 0;
      padding: 4px;
      font-size: 0.8em;
      color: #000; }
    #subscribe .newsonform button {
      position: relative;
      top: -6px;
      background: none;
      border: 0 !important;
      padding: 0;
      font-size: 2em; }

#news {
  background: white;
  padding-bottom: 15px; }
  #news .containernews {
    position: relative; }
  #news .actutitle {
    color: #e24e1b;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px; }
  #news .newsCarouselItem {
    padding: 15px; }
    #news .newsCarouselItem .news_block {
      margin-bottom: 15px;
      position: relative; }
      #news .newsCarouselItem .news_block .news_img {
        display: inline-block;
        width: 100%;
        height: 300px;
        overflow: hidden; }
        #news .newsCarouselItem .news_block .news_img img {
          width: 100%;
          margin-bottom: 0; }
      #news .newsCarouselItem .news_block .news_content {
        background: rgba(0, 0, 0, 0.5);
        color: white;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 7px; }
        #news .newsCarouselItem .news_block .news_content .content {
          padding: 10px; }
        #news .newsCarouselItem .news_block .news_content .link {
          color: white;
          display: block;
          background: #e24e1b;
          padding: 10px;
          text-align: right; }
        #news .newsCarouselItem .news_block .news_content p {
          margin: 0; }
  #news .seeall {
    display: inline-block;
    width: auto;
    margin: 20px auto 0 auto;
    padding: 15px;
    color: white;
    background: #e24e1b;
    transition: background 0.5s;
    -webkit-transition: background 0.5s; }
    #news .seeall:hover {
      background: #be4117;
      text-decoration: none; }

.news-wrap .news-blockwrapper {
  margin-bottom: 30px; }
  .news-wrap .news-blockwrapper .news_block {
    position: relative; }
    .news-wrap .news-blockwrapper .news_block .news_img {
      display: inline-block;
      width: 100%; }
      .news-wrap .news-blockwrapper .news_block .news_img img {
        width: 100%;
        margin-bottom: 0; }
    .news-wrap .news-blockwrapper .news_block .news_content {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      position: absolute;
      width: 100%;
      left: 0;
      bottom: 0px; }
      .news-wrap .news-blockwrapper .news_block .news_content .content {
        padding: 10px; }
      .news-wrap .news-blockwrapper .news_block .news_content .link {
        color: white;
        display: block;
        background: #e24e1b;
        padding: 10px;
        text-align: right; }
      .news-wrap .news-blockwrapper .news_block .news_content p {
        margin: 0; }
.news-wrap #news_paginator a {
  color: #e24e1b;
  display: inline-block;
  padding: 10px;
  background: white;
  border-radius: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.46);
  font-weight: bold; }

.contentHeader {
  background-color: #3C3C3B;
  text-align: right;
  padding: 10px; }
  .contentHeader img {
    max-height: 80px; }

.newslist_container .news-blockwrapper {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 25px; }
.newslist_container h1 {
  margin-top: 0;
  font-size: 1.6em; }
.newslist_container h2 {
  font-size: 1em;
  margin-top: 0px; }
.newslist_container .link {
  color: #e24e1b; }

.newsimage {
  float: left;
  margin-right: 20px; }

/* SETTINGS */
#testimonials {
  background: #e24e1b;
  position: relative;
  padding: 25px;
  color: white; }
  #testimonials h2 {
    font-style: italic; }
  #testimonials p {
    font-size: 0.9em; }
  #testimonials #pictoTesti {
    display: block;
    margin: 0 auto 0 auto;
    position: absolute;
    top: -50px;
    width: 100px;
    left: 50%;
    margin-left: -50px; }
  #testimonials #testiWrapper {
    position: relative; }
  #testimonials .item {
    margin: 0 auto 0 auto;
    width: 900px;
    max-width: 90%;
    padding: 20px;
    clear: both;
    position: relative; }
    #testimonials .item .image {
      width: 25%;
      max-width: 200px;
      float: left;
      height: auto;
      border-radius: 500px;
      overflow: hidden;
      padding: 25px; }
    #testimonials .item .content {
      float: left;
      max-width: 75%; }

@media screen and (max-width: 480px) {
  #testimonials {
    padding: 0; }

  #testimonials .item .image {
    width: 60%;
    float: none;
    margin: 0 auto 0 auto; }

  #testimonials .item .content {
    max-width: 100%; } }
#contactform {
  padding-top: 50px;
  padding-bottom: 80px;
  background: #ebebeb;
  color: #e24e1b; }
  #contactform h2 {
    text-align: center;
    color: #e24e1b;
    font-size: 3em;
    font-weight: bold; }
  #contactform .social {
    text-align: center;
    margin-top: 20px; }
  #contactform .contact {
    margin-top: 20px; }
    #contactform .contact .messagecol {
      margin-top: 20px; }
    #contactform .contact .buttoncol {
      text-align: right; }
    #contactform .contact input, #contactform .contact textarea {
      border: 0px;
      border-radius: 10px;
      width: 100%;
      color: #e24e1b;
      padding: 5px 10px;
      outline: none;
      box-sizing: border-box; }
    #contactform .contact textarea {
      height: 150px;
      margin-top: 20px; }
    #contactform .contact .btnForm {
      background: #e24e1b;
      color: white;
      width: 110px;
      border: 0px;
      border-radius: 10px;
      outline: none;
      padding: 5px 10px;
      box-sizing: border-box; }
  #contactform #centerBox {
    display: flex;
    justify-content: center; }

#footer {
  background: #3C3C3B;
  color: white;
  font-size: 0.9em; }
  #footer #footerOut h2 {
    color: #e24e1b;
    font-size: 1em; }
  #footer #footerOut a {
    color: #e24e1b;
    text-decoration: none; }

.jcarousel-wrapper, .jcarousel-wrapper-news, .jcarouselNews {
  position: relative; }

/** Carousel **/
.jcarousel, .jcarousel-news, .jcarouselNews, .jcarouselSolutions {
  position: relative;
  overflow: hidden;
  width: 100%; }

.jcarousel ul, .jcarousel-news ul, .jcarouselNews ul, .jcarouselSolutions ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0; }

.jcarousel li, .jcarousel-news li, .jcarouselNews li, .jcarouselSolutions li {
  width: 200px;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.jcarousel img, .jcarousel-news img, .jcarouselNews img, .jcarouselSolutions img {
  display: block;
  max-width: 100%;
  height: auto !important; }

/** Carousel Controls **/
.jcarousel-control-prev,
.jcarousel-control-next,
.jcarousel-control-news-prev,
.jcarousel-control-news-next,
.jcarousel-control-solutions-prev,
.jcarousel-control-solutions-next {
  position: absolute;
  top: 50%;
  margin-top: 15px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: black;
  text-decoration: none; }
  .jcarousel-control-prev:hover,
  .jcarousel-control-next:hover,
  .jcarousel-control-news-prev:hover,
  .jcarousel-control-news-next:hover,
  .jcarousel-control-solutions-prev:hover,
  .jcarousel-control-solutions-next:hover {
    color: black;
    text-decoration: none; }

.jcarousel-control-prev, .jcarousel-control-news-prev .jcarousel-control-solutions-prev {
  left: -15px; }

.jcarousel-control-next, .jcarousel-control-news-next, .jcarousel-control-solutions-next {
  right: -15px; }

/** Carousel Pagination **/
.jcarousel-pagination, .jcarousel-news-pagination, .jcarousel-solutions-pagination {
  text-align: center; }

.jcarousel-pagination a, .jcarousel-news-pagination a, .jcarousel-solutions-pagination a {
  text-decoration: none;
  display: inline-block;
  font-size: 11px;
  height: 10px;
  width: 10px;
  line-height: 10px;
  background: #fff;
  color: #4E443C;
  border-radius: 10px;
  text-indent: -9999px;
  margin-right: 7px;
  -webkit-box-shadow: 0 0 2px #4E443C;
  -moz-box-shadow: 0 0 2px #4E443C;
  box-shadow: 0 0 2px #4E443C;
  -webkit-transition: width 0.3s;
  /* Safari */
  transition: width 0.3s; }

.jcarousel-pagination a.active, .jcarousel-news-pagination a.active {
  color: #fff;
  opacity: 1;
  width: 20px; }

#job {
  background-color: white;
  padding: 15px;
  padding-top: 35px;
  padding-bottom: 40px; }
  #job h2 {
    text-align: center;
    color: #e24e1b;
    margin-top: 0;
    padding-bottom: 20px; }
  #job #jobwrapper {
    margin-top: 15px;
    text-align: justify; }
    #job #jobwrapper h2 {
      color: black;
      font-size: 1.2em;
      text-align: left;
      padding-bottom: 0px; }
    #job #jobwrapper .button {
      display: inline-block;
      padding: 5px 15px 5px 15px;
      border-radius: 20px;
      text-decoration: none;
      border: 1px solid #e24e1b;
      background: #e24e1b;
      color: white;
      transition: all ease 0.7s;
      margin-top: 30px; }
      #job #jobwrapper .button:hover {
        text-decoration: none;
        color: #e24e1b;
        background: white; }
    #job #jobwrapper p.center {
      text-align: center; }
  #job .worklink {
    display: inline-block;
    width: auto;
    margin: 20px auto 0 auto;
    padding: 15px;
    color: white;
    background: #e24e1b;
    transition: background 0.5s;
    -webkit-transition: background 0.5s; }
    #job .worklink:hover {
      background: #be4117;
      text-decoration: none; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 10px;
  height: 10px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 10px;
    height: 2px;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -4px; }
  .hamburger-inner::after {
    bottom: -4px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 20px; }
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 4px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -4px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 20px; }
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 4px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -4px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 20px; }
.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 4px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -4px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 20px; }
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 4px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -4px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-2px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-2px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(2px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(2px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-2px, -2.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-2px, 2.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(2px, -2.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(2px, 2.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -8px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -4px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -8px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -4px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 4px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 8px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 4px, 0) rotate(135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-270deg);
    transition-delay: 0.1s; }

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 4px;
    transition: opacity 0.15s 0.4s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 8px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 4px, 0) rotate(-135deg);
  transition-delay: 0.1s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(270deg);
    transition-delay: 0.1s; }

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 4px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -20px;
      top: -20px;
      transform: translate3d(20px, 20px, 0) rotate(45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -20px;
      top: -20px;
      transform: translate3d(-20px, 20px, 0) rotate(-45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 4px;
      right: 0;
      transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -20px;
      top: 20px;
      transform: translate3d(20px, -20px, 0) rotate(-45deg);
      transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -20px;
      top: 20px;
      transform: translate3d(-20px, -20px, 0) rotate(45deg);
      transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 4px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider .hamburger-inner::after {
    top: 8px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 4px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-1.42857px, -2px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 4px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.2s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 8px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 4px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(1.42857px, -2px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(90deg); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.15s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 4px;
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 8px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 4px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 4px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -8px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -4px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

html {
  height: 100%; }

html, body {
  font-size: 1em;
  overflow-x: hidden; }

body {
  background: #3C3C3B;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 300; }

@media screen and (max-width: 760px) {
  body {
    background: url("../images/bgmobile.jpg");
    background-size: 200% !important;
    background-position: 50% 50%;
    background-repeat: no-repeat; }

  #footerOut {
    text-align: center; } }
/* Notifications */
.notification.success {
  background-color: #98c700;
  color: #fff; }

.notification.error {
  background-color: #ea5338;
  color: #fff; }

.notification.warning {
  background-color: #f9b418;
  color: #fff; }

.notification {
  padding: 17px;
  margin-top: 5px;
  margin-bottom: 15px;
  -moz-border-radius: 3px;
  -webkit-border: 3px;
  border-radius: 3px; }

#homebackground {
  z-index: -1;
  overflow: hidden;
  position: relative; }

#homebackground #logo {
  margin-top: 50px; }

#homebackground #logo img {
  max-width: 100%; }

#homebackground .hello {
  margin-top: 140px;
  width: 500px;
  max-width: 90%; }

.video-bg {
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
  overflow: hidden; }

#homebackground video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 999;
  display: inline-block;
  vertical-align: baseline;
  object-fit: cover; }

#homebackground .abs {
  position: absolute;
  z-index: 1000;
  height: 100%;
  width: 100%; }

/* dialog */
.dialog_wrapper {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  height: 0%;
  width: 0%;
  z-index: 9998;
  top: 50%;
  left: 50%;
  color: #313131;
  overflow-y: scroll; }

.dialog {
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  display: none; }

.dialog_content {
  text-align: justify; }
  .dialog_content p, .dialog_content li {
    text-align: justify;
    line-height: 1.7em;
    margin-bottom: 10px; }
  .dialog_content h2 {
    color: #e24e1b;
    font-weight: bold; }

.dialog_close {
  position: absolute;
  top: 60px;
  right: 30px;
  display: none;
  z-index: 5000; }

.dialog_close i {
  font-size: 2em;
  color: #313131;
  cursor: pointer; }

/*# sourceMappingURL=style.css.map */
