@charset "UTF-8";
/* FONT-FAMILIES */
/* FONT-SIZES */
/* COLORS VARIABLES */
@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700");
@-webkit-keyframes left-to-right-anim {
  0% {
    left: -100vw; }
  100% {
    left: 0; } }

/* ESSENTIALS */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none; }

html {
  width: 100%;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #222;
  font-size: 12px; }

body {
  width: 100%;
  height: 100%;
  color: white;
  font-weight: 300;
  background: #222; }

.vertical {
  display: table-cell;
  vertical-align: middle; }

a {
  color: inherit;
  text-decoration: none; }

ul {
  list-style-type: none; }
label {
  color:white !important; }
h1 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #f58229; }
  h1:before {
    content: "\e900";
    font-family: "icomoon";
    margin-right: 10px;
    color: #ccc; }

h2 {
  font-size: 20px;
  font-weight: 400; }

h3 {
  font-size: 24px;
  font-weight: 400; }
.chronoforms {
    padding: 100px;
}

.description p {
  margin: 20px 0;
  font-size: 12px; }
  .description p.intro {
    font-size: 16px;
    color: #f58229; }

.description ul {
  list-style-type: none; }
  .description ul.list {
    margin: 20px 0; }
    .description ul.list h4 {
      margin-bottom: 10px; }
    .description ul.list li:before {
      content: "• ";
      padding: 0 5px;
      line-height: 0;
      display: inline-block;
      color: #999; }
    .description ul.list.numbered {
      counter-reset: my-badass-counter; }
      .description ul.list.numbered li:before {
        content: counter(my-badass-counter);
        counter-increment: my-badass-counter;
        width: 20px;
        display: inline-block;
        font-size: 10px;
        text-align: center; }

.description table {
  border: 0;
  border-collapse: collapse; }
  .description table tr {
    -webkit-box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 -1px 0 0 rgba(255, 255, 255, 0.05); }
    .description table tr td {
      padding: 5px 10px;
      /* font-size: 12px; */
      -webkit-box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.05);
      box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.05);
      text-align: center; }
      .description table tr td:last-child {
        -webkit-box-shadow: none;
        box-shadow: none; }
  .description table thead {
    font-weight: bold; }
  .description table tbody tr:last-child {
    -webkit-box-shadow: none;
    box-shadow: none; }

.description code {
  background: #f3f3f3;
  display: inline-block;
  padding: 10px;
  border-radius: 5px; }

.buttons {
  width: 100%;
  text-align: center;
  clear: left;
  margin: 10px 0; }

button {
  font-family: "Montserrat", sans-serif;
  padding: 2px 20px;
  border: 0;
  -webkit-box-shadow: 0 0 0 2px white;
  box-shadow: 0 0 0 2px white;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 400;
  margin: 10px;
  display: inline-block;
  color: white;
  background: none; }
  button:last-child {
    background: white;
    color: #f58229; }

/* HEADER */
header {
  height: 100px;
  width: 100%;
  background: white;
  font-size: 12px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 99; }
  header .el {
    height: 100px;
    float: left; }
    header .el.logo {
      padding: 0px;
      height: 100%;
      margin-left: 20px;
      color: white; }
      header .el.logo .logotype {
        width: 180px;
        text-align: center;
        font-size: 80px;
        float: left;
        height: 100%;
        display: table; }
        @media all and (max-width: 400px) {
          header .el.logo .logotype {
            width: 100px; } }
        header .el.logo .logotype img {
          width: 100%;
          display: block; }
      header .el.logo .txt {
        float: left;
        display: table;
        height: 100px;
        text-align: center;
        position: relative;
        left: -30px; }
        header .el.logo .txt .logotxt {
          font-size: 30px;
          font-weight: bold; }
        header .el.logo .txt .sublogotxt {
          font-size: 8px;
          text-transform: uppercase;
          letter-spacing: 1px; }
    header .el.menu {
      height: 100%;
      float: left;
      color: #999; }
      @media all and (max-width: 1180px) {
        header .el.menu {
          float: right; } }
      header .el.menu .burger {
        display: none; }
        @media all and (max-width: 1180px) {
          header .el.menu .burger {
            display: block;
            width: 100px;
            height: 100px;
            padding: 15px;
            position: relative; }
            header .el.menu .burger .line {
              background: #333;
              width: 70px;
              height: 6px;
              position: absolute;
              top: calc(50% - 3px);
              border-radius: 6px;
              -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
              -o-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
              transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1); }
              header .el.menu .burger .line:before {
                content: '';
                background: #333;
                width: 70px;
                height: 6px;
                position: absolute;
                top: -20px;
                border-radius: 6px;
                -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
                -o-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
                transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1); }
              header .el.menu .burger .line:after {
                content: '';
                background: #333;
                width: 70px;
                height: 6px;
                position: absolute;
                top: 20px;
                border-radius: 6px;
                -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
                -o-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
                transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1); } }
        header .el.menu .burger.open .line {
          background: none; }
          header .el.menu .burger.open .line:before {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 0; }
          header .el.menu .burger.open .line:after {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 0; }
      header .el.menu ul.parent, header .el.menu ul.menu {
        height: 100%;
        padding: 0 40px; }
        @media all and (max-width: 1180px) {
          header .el.menu ul.parent, header .el.menu ul.menu {
            display: none;
            position: fixed;
            left: 0;
            top: 100px;
            background: #ccc;
            width: 100%;
            height: calc(100vh - 100px); }
            header .el.menu ul.parent.open, header .el.menu ul.menu.open {
              display: table; }
            header .el.menu ul.parent li.parent, header .el.menu ul.parent > li, header .el.menu ul.menu li.parent, header .el.menu ul.menu > li {
              height: initial !important;
              float: initial !important;
              line-height: 50px !important;
              text-align: center !important;
              text-transform: uppercase !important;
              font-size: 20px !important;
              color: #f58229; }
              header .el.menu ul.parent li.parent:after, header .el.menu ul.parent > li:after, header .el.menu ul.menu li.parent:after, header .el.menu ul.menu > li:after {
                display: none !important; }
              header .el.menu ul.parent li.parent ul.child, header .el.menu ul.parent li.parent ul.nav-child, header .el.menu ul.parent > li ul.child, header .el.menu ul.parent > li ul.nav-child, header .el.menu ul.menu li.parent ul.child, header .el.menu ul.menu li.parent ul.nav-child, header .el.menu ul.menu > li ul.child, header .el.menu ul.menu > li ul.nav-child {
                position: relative !important;
                left: initial !important;
                width: 100% !important;
                padding: 5px !important; }
                header .el.menu ul.parent li.parent ul.child li.child, header .el.menu ul.parent li.parent ul.child > li, header .el.menu ul.parent li.parent ul.nav-child li.child, header .el.menu ul.parent li.parent ul.nav-child > li, header .el.menu ul.parent > li ul.child li.child, header .el.menu ul.parent > li ul.child > li, header .el.menu ul.parent > li ul.nav-child li.child, header .el.menu ul.parent > li ul.nav-child > li, header .el.menu ul.menu li.parent ul.child li.child, header .el.menu ul.menu li.parent ul.child > li, header .el.menu ul.menu li.parent ul.nav-child li.child, header .el.menu ul.menu li.parent ul.nav-child > li, header .el.menu ul.menu > li ul.child li.child, header .el.menu ul.menu > li ul.child > li, header .el.menu ul.menu > li ul.nav-child li.child, header .el.menu ul.menu > li ul.nav-child > li {
                  font-size: 12px !important;
                  line-height: 30px;
                  color: #333;
                  height: 20px !important;
                  line-height: 20px !important; }
              header .el.menu ul.parent li.parent:hover ul.child, header .el.menu ul.parent li.parent:hover ul.nav-child, header .el.menu ul.parent > li:hover ul.child, header .el.menu ul.parent > li:hover ul.nav-child, header .el.menu ul.menu li.parent:hover ul.child, header .el.menu ul.menu li.parent:hover ul.nav-child, header .el.menu ul.menu > li:hover ul.child, header .el.menu ul.menu > li:hover ul.nav-child {
                display: block; } }
        header .el.menu ul.parent li.parent, header .el.menu ul.parent > li, header .el.menu ul.menu li.parent, header .el.menu ul.menu > li {
          height: 100%;
          float: left;
          line-height: 100px;
          font-size: 14px;
          text-transform: uppercase;
          font-weight: bold;
          padding: 0 20px;
          position: relative; }
          header .el.menu ul.parent li.parent:after, header .el.menu ul.parent > li:after, header .el.menu ul.menu li.parent:after, header .el.menu ul.menu > li:after {
            content: "";
            position: absolute;
            right: calc(0% - 15px);
            width: 10px;
            height: 10px;
            background: #f58229;
            border-radius: 10px;
            top: calc(50% - 5px);
            display: inline-table;
            right: calc(0% - 5px); }
          header .el.menu ul.parent li.parent:first-child, header .el.menu ul.parent > li:first-child, header .el.menu ul.menu li.parent:first-child, header .el.menu ul.menu > li:first-child {
            display: none; }
          header .el.menu ul.parent li.parent:last-child:after, header .el.menu ul.parent > li:last-child:after, header .el.menu ul.menu li.parent:last-child:after, header .el.menu ul.menu > li:last-child:after {
            display: none; }
          header .el.menu ul.parent li.parent ul.child, header .el.menu ul.parent li.parent ul.nav-child, header .el.menu ul.parent > li ul.child, header .el.menu ul.parent > li ul.nav-child, header .el.menu ul.menu li.parent ul.child, header .el.menu ul.menu li.parent ul.nav-child, header .el.menu ul.menu > li ul.child, header .el.menu ul.menu > li ul.nav-child {
            background: white;
            padding: 20px;
            position: absolute;
            width: 300px;
            left: -100vw;
            text-align: center;
            -webkit-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
            -o-transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1); }
            header .el.menu ul.parent li.parent ul.child li.child, header .el.menu ul.parent li.parent ul.child > li, header .el.menu ul.parent li.parent ul.nav-child li.child, header .el.menu ul.parent li.parent ul.nav-child > li, header .el.menu ul.parent > li ul.child li.child, header .el.menu ul.parent > li ul.child > li, header .el.menu ul.parent > li ul.nav-child li.child, header .el.menu ul.parent > li ul.nav-child > li, header .el.menu ul.menu li.parent ul.child li.child, header .el.menu ul.menu li.parent ul.child > li, header .el.menu ul.menu li.parent ul.nav-child li.child, header .el.menu ul.menu li.parent ul.nav-child > li, header .el.menu ul.menu > li ul.child li.child, header .el.menu ul.menu > li ul.child > li, header .el.menu ul.menu > li ul.nav-child li.child, header .el.menu ul.menu > li ul.nav-child > li {
              height: 40px;
              line-height: 40px; }
              header .el.menu ul.parent li.parent ul.child li.child:hover, header .el.menu ul.parent li.parent ul.child > li:hover, header .el.menu ul.parent li.parent ul.nav-child li.child:hover, header .el.menu ul.parent li.parent ul.nav-child > li:hover, header .el.menu ul.parent > li ul.child li.child:hover, header .el.menu ul.parent > li ul.child > li:hover, header .el.menu ul.parent > li ul.nav-child li.child:hover, header .el.menu ul.parent > li ul.nav-child > li:hover, header .el.menu ul.menu li.parent ul.child li.child:hover, header .el.menu ul.menu li.parent ul.child > li:hover, header .el.menu ul.menu li.parent ul.nav-child li.child:hover, header .el.menu ul.menu li.parent ul.nav-child > li:hover, header .el.menu ul.menu > li ul.child li.child:hover, header .el.menu ul.menu > li ul.child > li:hover, header .el.menu ul.menu > li ul.nav-child li.child:hover, header .el.menu ul.menu > li ul.nav-child > li:hover {
                color: #f58229; }
          header .el.menu ul.parent li.parent:hover ul.child, header .el.menu ul.parent li.parent:hover ul.nav-child, header .el.menu ul.parent > li:hover ul.child, header .el.menu ul.parent > li:hover ul.nav-child, header .el.menu ul.menu li.parent:hover ul.child, header .el.menu ul.menu li.parent:hover ul.nav-child, header .el.menu ul.menu > li:hover ul.child, header .el.menu ul.menu > li:hover ul.nav-child {
            left: calc(50% - 150px); }
    header .el.contact {
      display: table;
      text-align: center;
      float: right;
      padding: 20px;
      font-size: 22px;
      color: #999;
      font-weight: 600; }
      header .el.contact .supphone {
        font-size: 10px;
        text-transform: uppercase;
        margin-bottom: 3px;
        letter-spacing: 1px; }
        @media all and (max-width: 768px) {
          header .el.contact .supphone {
            display: none; } }
      header .el.contact .phone {
        padding: 0 15px;
        border-radius: 14px;
        background: #f58229;
        color: white;
        padding-left: 36px;
        position: relative;
        height: 30px;
        line-height: 30px; }
        @media all and (max-width: 768px) {
          header .el.contact .phone {
            padding-left: inherit;
            width: 60px;
            border-radius: 100%;
            height: 60px; } }
        @media all and (max-width: 768px) {
          header .el.contact .phone span {
            display: none; } }
        header .el.contact .phone span.icon {
          background: rgba(0, 0, 0, 0.25);
          position: absolute;
          left: 0;
          height: 30px;
          width: 30px;
          border-radius: 100%;
          font-size: 14px;
          line-height: 30px; }
          @media all and (max-width: 768px) {
            header .el.contact .phone span.icon {
              display: block;
              width: 60px;
              height: 60px;
              line-height: 60px;
              font-size: 30px;
              background: none; } }
      header .el.contact .subphone {
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-top: 5px; }
        @media all and (max-width: 768px) {
          header .el.contact .subphone {
            display: none; } }

main .page {
  position: relative;
  height: calc(100% - 100px);
  width: 100%;
  font-size: 0; }
  main .page:nth-child(1) {
    padding-top: 100px; }
  main .page:nth-child(1) {
    padding-top: 100px; }
  main .page .moduletable.banner {
    height: calc(100vh - 100px);
    width: 100%;
    position: relative; }
  main .page .section {
    font-size: 12px; }
    main .page .section.banner {
      height: calc(100vh - 100px);
      width: 100%;
      position: relative; }
      main .page .section.banner .flex-viewport {
        height: 100% !important;
        width: 100%; }
      main .page .section.banner ul.slides {
        height: 100% !important;
        width: 100%; }
        main .page .section.banner ul.slides li.slide {
          height: 100% !important;
          width: 100%;
          position: relative; }
          main .page .section.banner ul.slides li.slide .picture {
            height: calc(100%);
            width: 100%;
            position: absolute;
            opacity: 0.2; }
          main .page .section.banner ul.slides li.slide .txt {
            height: calc(100%);
            width: 100%;
            display: table;
            padding: 0 200px;
            position: relative;
            z-index: 2; }
            @media all and (max-width: 768px) {
              main .page .section.banner ul.slides li.slide .txt {
                padding: 0 50px;
                text-align: center; } }
            main .page .section.banner ul.slides li.slide .txt .cat {
              text-transform: uppercase;
              margin-bottom: 10px;
              color: #999;
              position: relative; }
              main .page .section.banner ul.slides li.slide .txt .cat:before {
                content: "\ea42";
                font-family: "icomoon";
                margin-right: 5px;
                color: #999; }
              main .page .section.banner ul.slides li.slide .txt .cat .value {
                color: white; }
            main .page .section.banner ul.slides li.slide .txt h3 {
              font-size: 50px;
              line-height: 50px;
              position: relative; }
              @media all and (max-width: 768px) {
                main .page .section.banner ul.slides li.slide .txt h3 {
                  font-size: 36px;
                  line-height: 36px; } }
              main .page .section.banner ul.slides li.slide .txt h3:before {
                content: "\e900";
                font-family: "icomoon";
                margin-right: 10px;
                color: #f58229; }
            main .page .section.banner ul.slides li.slide .txt p {
              position: relative;
              overflow: hidden;
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical; }
            main .page .section.banner ul.slides li.slide .txt .buttons button {
              position: relative; }
          main .page .section.banner ul.slides li.slide.flex-active-slide .txt .cat {
            -webkit-animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            -webkit-animation-delay: 250ms;
            animation-delay: 250ms;
            -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards; }
          main .page .section.banner ul.slides li.slide.flex-active-slide .txt h3 {
            -webkit-animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
            -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards; }
          main .page .section.banner ul.slides li.slide.flex-active-slide .txt p {
            -webkit-animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            -webkit-animation-delay: 750ms;
            animation-delay: 750ms;
            -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards; }
          main .page .section.banner ul.slides li.slide.flex-active-slide .txt .buttons button:nth-child(1) {
            -webkit-animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            -webkit-animation-delay: 1000ms;
            animation-delay: 1000ms;
            -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards; }
          main .page .section.banner ul.slides li.slide.flex-active-slide .txt .buttons button:nth-child(2) {
            -webkit-animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            animation: left-to-right-anim 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
            -webkit-animation-delay: 1250ms;
            animation-delay: 1250ms;
            -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards; }
      main .page .section.banner .flex-control-paging,
      main .page .section.banner .flex-direction-nav {
        display: none; }
      main .page .section.banner .splash {
        position: absolute;
        width: 200px;
        height: 200px;
        right: 20px;
        bottom: 20px;
        z-index: 9; }
        @media all and (max-width: 768px) {
          main .page .section.banner .splash {
            width: 120px;
            height: 120px; } }
        main .page .section.banner .splash .visual {
          height: 80%;
          width: 100%;
          text-align: center; }
          main .page .section.banner .splash .visual img {
            height: 100%; }
        main .page .section.banner .splash .txt {
          height: 20%;
          width: 100%;
          text-align: center; }
    main .page .section.fleets {
      width: 100%;
      display:inline-block;
      background: #f58229; }
      @media all and (max-width: 768px) {
        main .page .section.fleets {
          height: initial;
          display: inline-block; } }
      main .page .section.fleets .fleet {
        width: 33.33%;
        height: 200px;
        float: left;
        padding: 20px; }
        @media all and (max-width: 768px) {
          main .page .section.fleets .fleet {
            width: 100% !important;
            height: 200px; } }
        main .page .section.fleets .fleet:nth-child(1) {
          background: #888; }
        main .page .section.fleets .fleet:nth-child(2) {
          background: rgba(0, 0, 0, 0.15); }
        main .page .section.fleets .fleet:nth-child(3) {
          background: #111; }
		main .page .section.fleets .fleet:nth-child(4) {
          background: none; }
		main .page .section.fleets .fleet:nth-child(5) {
          background: #888; }
		main .page .section.fleets .fleet:nth-child(6) {
          background: #DDD; }
        main .page .section.fleets .fleet .picture {
          display: table;
          width: 40%;
          height: 100%;
          float: left;
          padding: 10px;
          position: relative !important;
          opacity: 1; }
          main .page .section.fleets .fleet .picture img {
            max-width: 100%;
            max-height: 100%; }
          main .page .section.fleets .fleet .picture .circle {
            width: 9vw;
            height: 9vw;
            border-radius: 100%; }
            @media all and (max-width: 768px) {
              main .page .section.fleets .fleet .picture .circle {
                width: 26vw !important;
                height: 26vw !important; } }
        main .page .section.fleets .fleet .txt {
          width: 60%;
          height: 100%;
          float: left;
          display: table;
          padding: 0; }
          main .page .section.fleets .fleet .txt .cat {
            text-transform: uppercase;
            font-size: 9px;
            position: relative; }
            main .page .section.fleets .fleet .txt .cat:before {
              content: "\ea42";
              font-family: "icomoon";
              margin-right: 5px;
              color: rgba(255, 255, 255, 0.25); }
          main .page .section.fleets .fleet .txt .h3.title {
            font-size: 24px;
            line-height: 20px;
            margin-top: 5px; }
          main .page .section.fleets .fleet .txt .description p {
            margin: 0;
            margin-top: 10px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; }
    main .page .section.aboutus {
      width: 100%;
      background: #333;
      padding: 50px 150px; }
      @media all and (max-width: 768px) {
        main .page .section.aboutus {
          padding: 20px; } }
      main .page .section.aboutus h1.title {
        font-size: 30px;
        color: #f58229;
        text-align: center; }
      main .page .section.aboutus .description p {
        margin: 20px 0;
        font-size: 12px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical; }
  main .page .article {
    font-size: 12px;
    background: #111;
    position: relative; }
    main .page .article .picture {
      width: 100%;
      height: 300px;
      position: absolute;
      top: 0;
      left: 0;
      text-align: center;
      opacity: 0.5; }
    main .page .article .box {
      width: 100%;
      height: 300px;
      display: table;
      position: relative;
      z-index: 2;
      text-align: center; }
      main .page .article .box h1.title {
        font-size: 44px;
        font-weight: 300;
        margin-bottom: 0;
        color: white;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
        main .page .article .box h1.title:before {
          color: #f58229; }
    main .page .article .txt {
      padding: 50px 100px; }
      main .page .article .txt .description p:first-child {
        font-size: 16px;
        color: #f58229; }
  main .page .itemListView.home {
    display: none; }
  main .page .contact {
    padding: 50px 100px;
    color: white;
    text-align: center;
    background: #111; }
    @media all and (max-width: 768px) {
      main .page .contact {
        padding: 30px; } }
    main .page .contact .text label {
      font-size: 7px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: white; }
    main .page .contact .page-header {
      margin-bottom: 20px; }
    main .page .contact dl.contact-address.dl-horizontal {
      display: none; }
    main .page .contact .contact-form {
      width: 100%;
      text-align: center; }
    main .page .contact form#contact-form {
      display: inline-block; }
    main .page .contact .control-group {
      padding: 5px 0; }
    main .page .contact .control-label {
      color: #f58229;
      font-size: 14px; }
    main .page .contact fieldset {
      border: 0;
      font-size: 12px; }
      main .page .contact fieldset legend {
        font-size: 28px;
        color: #666;
        margin: 30px 10px;
        display: inline-block; }
      main .page .contact fieldset input, main .page .contact fieldset textarea {
        margin: 5px 0;
        width: 300px;
        border-radius: 6px;
        border: 1px solid #ccc;
        padding: 5px 10px;
        font-size: 14px;
        font-family: 12px; }
      main .page .contact fieldset input {
        height: 30px; }

/* FOOTER */
footer .section.sitemap {
  width: 100%;
  display: inline-block;
  background: #111;
  padding: 50px; }
  @media all and (max-width: 768px) {
    footer .section.sitemap {
      height: inherit; } }
  footer .section.sitemap ul.parent, footer .section.sitemap ul.menu {
    width: 100%;
    text-align: center; }
    footer .section.sitemap ul.parent li.parent, footer .section.sitemap ul.parent > li, footer .section.sitemap ul.menu li.parent, footer .section.sitemap ul.menu > li {
      float: left;
      padding: 0 30px;
      font-size: 18px;
      width: 20%; }
      @media all and (max-width: 768px) {
        footer .section.sitemap ul.parent li.parent, footer .section.sitemap ul.parent > li, footer .section.sitemap ul.menu li.parent, footer .section.sitemap ul.menu > li {
          width: 100%;
          padding: 20px; } }
      footer .section.sitemap ul.parent li.parent a, footer .section.sitemap ul.parent > li a, footer .section.sitemap ul.menu li.parent a, footer .section.sitemap ul.menu > li a {
        color: #f58229;
        margin-bottom: 10px;
        display: block; }
      footer .section.sitemap ul.parent li.parent ul.child li.child, footer .section.sitemap ul.parent li.parent ul.child > li, footer .section.sitemap ul.parent li.parent ul.nav-child li.child, footer .section.sitemap ul.parent li.parent ul.nav-child > li, footer .section.sitemap ul.parent > li ul.child li.child, footer .section.sitemap ul.parent > li ul.child > li, footer .section.sitemap ul.parent > li ul.nav-child li.child, footer .section.sitemap ul.parent > li ul.nav-child > li, footer .section.sitemap ul.menu li.parent ul.child li.child, footer .section.sitemap ul.menu li.parent ul.child > li, footer .section.sitemap ul.menu li.parent ul.nav-child li.child, footer .section.sitemap ul.menu li.parent ul.nav-child > li, footer .section.sitemap ul.menu > li ul.child li.child, footer .section.sitemap ul.menu > li ul.child > li, footer .section.sitemap ul.menu > li ul.nav-child li.child, footer .section.sitemap ul.menu > li ul.nav-child > li {
        font-size: 12px;
        padding: 3px 0; }
        footer .section.sitemap ul.parent li.parent ul.child li.child a, footer .section.sitemap ul.parent li.parent ul.child > li a, footer .section.sitemap ul.parent li.parent ul.nav-child li.child a, footer .section.sitemap ul.parent li.parent ul.nav-child > li a, footer .section.sitemap ul.parent > li ul.child li.child a, footer .section.sitemap ul.parent > li ul.child > li a, footer .section.sitemap ul.parent > li ul.nav-child li.child a, footer .section.sitemap ul.parent > li ul.nav-child > li a, footer .section.sitemap ul.menu li.parent ul.child li.child a, footer .section.sitemap ul.menu li.parent ul.child > li a, footer .section.sitemap ul.menu li.parent ul.nav-child li.child a, footer .section.sitemap ul.menu li.parent ul.nav-child > li a, footer .section.sitemap ul.menu > li ul.child li.child a, footer .section.sitemap ul.menu > li ul.child > li a, footer .section.sitemap ul.menu > li ul.nav-child li.child a, footer .section.sitemap ul.menu > li ul.nav-child > li a {
          color: rgba(255, 255, 255, 0.5);
          margin-bottom: 0;
          display: block;
          height: 100%; }
        footer .section.sitemap ul.parent li.parent ul.child li.child:hover a, footer .section.sitemap ul.parent li.parent ul.child > li:hover a, footer .section.sitemap ul.parent li.parent ul.nav-child li.child:hover a, footer .section.sitemap ul.parent li.parent ul.nav-child > li:hover a, footer .section.sitemap ul.parent > li ul.child li.child:hover a, footer .section.sitemap ul.parent > li ul.child > li:hover a, footer .section.sitemap ul.parent > li ul.nav-child li.child:hover a, footer .section.sitemap ul.parent > li ul.nav-child > li:hover a, footer .section.sitemap ul.menu li.parent ul.child li.child:hover a, footer .section.sitemap ul.menu li.parent ul.child > li:hover a, footer .section.sitemap ul.menu li.parent ul.nav-child li.child:hover a, footer .section.sitemap ul.menu li.parent ul.nav-child > li:hover a, footer .section.sitemap ul.menu > li ul.child li.child:hover a, footer .section.sitemap ul.menu > li ul.child > li:hover a, footer .section.sitemap ul.menu > li ul.nav-child li.child:hover a, footer .section.sitemap ul.menu > li ul.nav-child > li:hover a {
          color: white; }

footer .section.links {
  width: 100%;
  background: #222;
  padding: 50px; }
  @media all and (max-width: 768px) {
    footer .section.links {
      height: inherit;
      display: inline-block; } }
  footer .section.links ul {
    width: 100%;
    text-align: center;
    font-size: 0; }
    footer .section.links ul li {
      width: 120px;
      height: 120px;
      display: inline-block;
      margin: 10px;
      padding: 10px;
      text-align: center; }
      footer .section.links ul li .inner {
        display: table;
        height: 100%;
        width: 100%; }
        footer .section.links ul li .inner img {
          max-height: 80px;
          max-width: 100px; }
#userForm label{
  font-size:initial;
}
