@import url(https://fonts.googleapis.com/css?family=Roboto+Mono|Roboto:400,300,700,500,900);
/*
blau = #078ed1
grau = #e1dfd3
grün = #078ed1
*/

.div_center{
  display: flex;
  align-items:center;
  /*justify-content:center;*/

}

.machine-cardimg{
  width: 200px;
  height: 200px;
}

.cardrahmen{
  height: 250px;
  /* border: 1px;
  border-style: solid; */
  padding:10px;
  /* border-color: #aaa; */
  max-width: 200px;
}
.navbox{
  border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
  border: 1px solid #adadad;
  height: 250px;


  /*width: 200px;*/
}
.navshadow{

  font-size: 4em;
  margin-left: auto;
  color: #5c5c5c;
  transition-duration: 0.5s;
}
.navshadow:hover{

	color: #078ed1;
  transform: scale(1.2);
  text-shadow: 0px 0px 16px rgba(100, 100, 100, 1);
}

/* Curl Bottom Right */
.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  
}
.hvr-shadow-radial:before, .hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
 
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, transparent 80%);
}
.hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  opacity: 1;
   border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



/*Preis-Schilder*/
.tag-container a {
    float: right;
    position: relative;
    width: auto;
    height: 30px;
    /*margin-left: 65px;*/

    padding: 0 12px;
		margin-top: -15px;
    line-height: 30px;
    background: #078ed1;
    color: #fff;
    font-size: 20px;
    font-weight: lighter;
    text-decoration: none;
}

.tag-container a:before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Create small white hole (circle) */
.tag-container a:after {
    content: "";
    position: absolute;
    top: 13px;
    width: 4px;
    height: 4px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background: #fff;
    -moz-box-shadow: -1px -1px 2px #252F27;
    -webkit-box-shadow: -1px -1px 2px #252F27;
    box-shadow: -1px -1px 2px #252F27;
}

/* Rounded corners */
.price-tag a {
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

/* Position of triangle  */
.price-tag a:before {
    left: -15px;
    border-color: transparent #078ed1 transparent transparent;
    border-width: 15px 15px 15px 0;
}

/* Fix the circle between box and triangle  */
.price-tag a:after {
    left: -2px;
}
.price-tag-rotate{
  position: absolute;
  left: 10px;
  top: 390px;

  transform: rotate(0deg);
}

  body p {
  font-size: 18px;
  font-weight: lighter;
}

.btn {
  border-radius: 0;
  font-family: Roboto;
  border: none;
  overflow: hidden; }
  .btn:active:focus, .btn:active, .btn:focus {
    outline: none; }

.btn-grey {
  background: #ccc;
  color: #333;
  text-shadow: 0 1px 0 #fff;
  border-color: #ddd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); }
  .btn-grey:hover, .btn-grey:focus, .btn-grey:active {
    background: #ddd; }

.btn-primary {
  background: #078ed1; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #4e8ab8; }

.btn-default {
  background: #f2f6f9; }
  .btn-default:hover, .btn-default:focus, .btn-default:active {
    background: white; }

.btn-info {
  background: #60a6bf; }
  .btn-info:hover, .btn-info:focus, .btn-info:active {
    background: #84bace; }

.btn-warning {
  background: #f0ad4e; }
  .btn-warning:hover, .btn-warning:focus, .btn-warning:active {
    background: #eb9316; }

.btn-danger {
  background: #d9534f; }
  .btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    background: #c12e2a; }

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  transition: all .5s; }

.btn-transparent:focus {
  color: #078ed1;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5); }

.btn-outline {
  background: none;
  border: solid 3px #ccc;
  color: #ccc;
  font-weight: 700; }
  .btn-outline:hover, .btn-outline:focus, .btn-outline:active {
    border: solid 3px #aaa;
    color: #aaa; }

.btn-outline-white {
  background: none;
  border: solid 3px #fff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase; }
  .btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
    border: solid 3px #ccc;
    color: #ccc; }

input[type="email"],
input[type="text"],
input[type="number"],
select,
textarea {
  border-radius: 0 !important;
  outline: none !important;
  border-color: #ddd !important; }

.input-block {
  width: 100%; }

.label {
  margin-top: 5px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 7px 10px; }

.label-block {
  width: 100%; }

.label-xs {
  padding: 2px 5px; }

.label-default {
  background: #f2f6f9;
  color: #333; }

.well {
  width: 100%;
  border-radius: 0;
  border: none;
  background: #e6e6e6;
  font-family: Roboto; }
  .well.no-padding {
    padding: 0;
    display: inline-flex; }

.panel-primary > .panel-heading {
  background: #078ed1; }

.panel-default > .panel-heading {
  background: #e6e6e6; }
.nav-pills li.active a{
  background-color: #078ed1;
}
.nav-pills li.active a:hover{
  background-color: #078ed1;
}
ul.nav-pills {
  margin-top: 20px;
  box-shadow: 8px 9px 3px -4px rgba(204, 204, 204, 0.14);
  border-radius: 0; }

  ul.nav-pills li a {
    border-radius: 0;
    padding: 15px;
    background: #fff;
    color: #000;
    font-size: 18px;
    font-family: Roboto; }
    ul.nav-pills li a:active {
      background-color: #078ed1;
     }
    ul.nav-pills li a .fa {
      font-size: 15px;
      margin-bottom: 0px; }

/* Wave Effect */
.btn-wave {
  position: absolute;
  overflow: hidden; }
  .btn-wave .btn {
    user-select: none; }

.ink {
  display: block;
  position: absolute;
  background: #A9E3ED;
  border-radius: 100%;
  transform: scale(0); }

.ink.animate {
  animation: ripple .5s linear; }

@keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  100% {
    opacity: 0;
    transform: scale(2.5); } }

html, body {
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  overflow-x: hidden;
  font-family: 'Roboto'; }
  html ::selection, body ::selection {
    background: rgba(51, 119, 255, 0.2); }
  html .container#content, body .container#content {
    padding-top: 20px;
    margin-bottom: 10%; }
  html .transparent, body .transparent {
    opacity: .7;
    mix-blend-mode: hard-light; }

html {
  overflow-y: scroll; }

h1 {
  font-size: 150%; }

a {
  color: #555; }
  a:hover, a:focus, a:active {
    color: #777; }

img.img-responsive {
  object-fit: cover; }

.text-bigger {
  font-size: 115%; }

input#email-confirm,
label[for='email-confirm'] {
  display: none;
  visibility: hidden; }

.header {
  font-family: "Roboto";
  position: relative;
  width: 100%;
  background: #000;
  padding: 15px; }
  .header img.logo {
    height: 50px;
    object-fit: cover;

  }
  .header a, .header span.fa {
    color: #078ed1; /*rgba(40, 157, 247, 0.7);*/
    display: inline-block;
    vertical-align: middle;
    line-height: 2em;
  font-size:18px }

.nav-wrapper {
  min-height: 0px; }

.navigation {
  z-index: 1337;
  /*width: 70%;*/
  min-width: 250px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 25px; }
  .navigation ul {
    display: inline;
    padding: 0;
    margin: 0; }
    .navigation ul li {
      display: block;
      text-decoration: none; }
      .navigation ul li a,
      .navigation ul li a:active,
      .navigation ul li a:focus,
      .navigation ul li a:hover {
        padding: 5px;
        font-family: "Roboto";
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        text-transform: uppercase;
        color: #777;
        transition: all .3s; }
    .navigation ul form {
      display: inline;
      float: right;
      height: 64px; }
      .navigation ul form input {
        width: 200px;
        height: 100%;
        border: none;
        padding: 0 10px;
        font-family: 'Roboto';
        font-weight: 400;
        font-size: 25px;
        color: #777;
        background: rgba(0, 0, 0, 0.05);
        border-bottom: solid transparent 2px;
        transition: all 0.3s; }
        .navigation ul form input:hover {
          border-color: #078ed1;
          background: rgba(0, 0, 0, 0.1); }
      .navigation ul form button {
        height: 100%;
        width: 50px;
        margin-top: -8px;
        margin-left: -5px; }

/*@media only screen and (max-width: 991px) {
  .navigation.affix {
    position: fixed;
    top: 0;
    width: 100%;
    bottom: 0;
     }
    }*/

@media only screen and (min-width: 992px) {
  .nav-wrapper {
    min-height: 60px; }
  .navigation {
    display: block;
    height: auto;
    width: 100%;
    padding: 0; }
    .navigation.affix {
      top: 0; }
    .navigation ul {
      display: inline; }
      .navigation ul li {
        display: inline;
        text-decoration: none; }
        .navigation ul li button {
          margin-top: 12px; }
        .navigation ul li a,
        .navigation ul li a:active,
        .navigation ul li a:focus,
        .navigation ul li a:hover {
          display: inline-block;
          color: #777;
          font-weight: bold;
          font-size: 14px;
          padding: 20px 5px;
          margin: 0 20px;
          text-transform: uppercase;
          text-decoration: none;
          border-bottom: solid 4px transparent; }
          .navigation ul li a.active, .navigation ul li a.active:hover,
          .navigation ul li a:active.active,
          .navigation ul li a:active.active:hover,
          .navigation ul li a:focus.active,
          .navigation ul li a:focus.active:hover,
          .navigation ul li a:hover.active,
          .navigation ul li a:hover.active:hover {
            border-bottom-color: #078ed1;
            color: #111111; }
          .navigation ul li a.disabled, .navigation ul li a.disabled:hover,
          .navigation ul li a:active.disabled,
          .navigation ul li a:active.disabled:hover,
          .navigation ul li a:focus.disabled,
          .navigation ul li a:focus.disabled:hover,
          .navigation ul li a:hover.disabled,
          .navigation ul li a:hover.disabled:hover {
            border-bottom-color: transparent;
            color: #dddddd;
            cursor: no-drop; }
        .navigation ul li a:hover {
          border-bottom: solid 4px #078ed1;
          color: #687986;
          }
        .navigation ul li .btn {
          height: 34px;
          text-transform: uppercase;
          font-size: 12px; } }

#hero {
  font-family: "Roboto";
  width: 100%;
  padding: 5% 0;
  /*
  background: url("../images/hero_blurred.jpg"), rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0 -250px;
  background-size: cover;
  */
}
  #hero .text {
    padding: 0;
    margin-top: -10px;
    font-size: 120%;
    font-weight: 100;
    color: #ccc; }
    #hero .text h1 {
      text-transform: uppercase;
      font-weight: 900;
      color: #fff; }
      #hero .text h1 small {
        font-weight: 200;
        font-size: 100%;
        color: rgba(40, 157, 247, 0.7);
        mix-blend-mode: lighten; }
    #hero .text p {
      margin-bottom: 20px;
      mix-blend-mode: normal; }

#content .datasheet-small-images img {
  margin-bottom: 10px; }

#content ul.list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px !important; }
  #content ul.list li {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    background: #e6e6e6; }
    #content ul.list li:first-child {
      margin-top: 0; }
    #content ul.list li a {
      color: #404040;
    }
    #content ul.list li span.value {
      position: absolute;
      left: 50%;
      font-weight: normal; }
    #content ul.list li span.pull-right {
      color: #a6a6a6; }
    #content ul.list li div.sub {
      width: 90%;
      float: right;
      padding: 0;
      padding-bottom: -10px;
      margin: 0;
      background: #e6e6e6; }
  #content ul.list.list-datasheet li {
    color: #595959;
    background: #ededed;
    font-weight: bold;
    padding: 7px;
    margin: 5px;
    font-size: 120%;
  }
    #content ul.list.list-datasheet li a {
      color: #289df7;
      text-decoration: underline; }
  #content ul.list.list-striped li {
    background: #eeeeee;
    color: #404040;
    margin: 0;
    font-size: 120%;
  }
    #content ul.list.list-striped li:nth-child(even) {
      background: #f7f7f7; }

#content hr {
  margin-top: 30px;
  border-top: solid 2px #bfbfbf; }

#content .machines-heading {
  width: 100%;
  padding: 5%;
  background: #078ed1;
  margin-bottom: 20px;
  color: #fff;
  font-size: 175%;
  text-transform: uppercase; }
  #content .machines-heading ul {
    font-size: 50%;
    list-style: none;
    margin: 0 20px;
    padding: 0; }
    #content .machines-heading ul li span.value {
      color: #a9c6dc;
      float: right; }

#content .block {
  color: #404040;
  font-family: "Roboto";
  padding: 20px;
  font-size: 120%; }
  #content .block .heading-row {
    padding: 0; }
    #content .block .heading-row h1, #content .block .heading-row h2, #content .block .heading-row h3, #content .block .heading-row h4, #content .block .heading-row h5, #content .block .heading-row h6 {
      padding: 10px;
      background: #f2f2f2;
      position: relative;
      z-index: 999;
      display: inline-block;
      font-size: 180%;
      color: #262626;
      letter-spacing: 1px;
      font-weight: 500;
      padding-right: 5px;
      text-transform: uppercase; }
    #content .block .heading-row:before {
      content: "";
      position: absolute;
      background: #bfbfbf;
      left: 20px;
      top: 60%;
      width: 97%;
      height: 2px; }
    #content .block .heading-row.no-line:before {
      background: transparent; }
      #content .block .heading-row.no-line:before h1, #content .block .heading-row.no-line:before h2, #content .block .heading-row.no-line:before h3, #content .block .heading-row.no-line:before h4, #content .block .heading-row.no-line:before h5, #content .block .heading-row.no-line:before h6 {
        background: none; }
  #content .block .heading-row.backgrounded h1, #content .block .heading-row.backgrounded h2, #content .block .heading-row.backgrounded h3, #content .block .heading-row.backgrounded h4, #content .block .heading-row.backgrounded h5, #content .block .heading-row.backgrounded h6 {
    background: none;
    mix-blend-mode: darken; }

#content .well {
  font-family: "Roboto", Arial;
  color: #333; }
  #content .well .card {
    border-right: solid 10px #f2f2f2;
    font-family: "Roboto", Arial;
    color: #333;
    padding: 1em 2em;
    display: block;
    width: 70%; }
    #content .well .card h1, #content .well .card h2, #content .well .card h3, #content .well .card h4, #content .well .card h5, #content .well .card h6 {
      font-size: 145%;
      font-weight: 400;
      text-transform: uppercase;
      margin-bottom: -15px;
      margin-top: 10px; }
      #content .well .card h1 small, #content .well .card h2 small, #content .well .card h3 small, #content .well .card h4 small, #content .well .card h5 small, #content .well .card h6 small {
        font-size: 50%;
        font-weight: 300; }
    #content .well .card p {
      margin-top: -5px;
      color: #737373; }
  #content .well .image {
    overflow: hidden;
    display: block;
    width: 30%;
    -webkit-filter: grayscale(1);

    }
    #content .well .image.machine-textile {
      background: url("../images/machine_textil.jpg") no-repeat;
      background-size: cover;
    }

    #content .well .image.machine-textile:hover {
      cursor: pointer;
        /*background-size: 400%;*/
        -webkit-filter: grayscale(0);

         /*-webkit-transition: margin 1s ease;
            -moz-transition: margin 1s ease;
              -o-transition: margin 1s ease;
             -ms-transition: margin 1s ease;
                 transition: margin 1s ease;
                  margin-left: -200px;
                  width:100%;
                  float: left;*/

      }

    #content .well .image.machine-textile2 {
      background: url("../images/machine_textil2.jpg") no-repeat;
      background-size: cover; }

    #content .well .image.machine-textile2:hover {
        /*background-size: 400%;*/
        -webkit-filter: grayscale(0);

        /*height: 640px;
          width: 502px;

          -webkit-transition: all 1s ease;
          -moz-transition: all 1s ease;
          -o-transition: all 1s ease;
          -ms-transition: all 1s ease;
          transition: all 1s ease;*/
        /*-webkit-transition: margin 1s ease;
           -moz-transition: margin 1s ease;
             -o-transition: margin 1s ease;
            -ms-transition: margin 1s ease;
                transition: margin 1s ease;
                 margin-left: -200px;
                 width:100%;
                 float: left;*/
      }

    #content .well .image.machine-metal {
      background: url("../images/machine_metall.jpg") no-repeat;
      background-size: cover; }

    #content .well .image.machine-metal:hover {
        /*background-size: 400%;*/
        -webkit-filter: grayscale(0);}

    #content .well .image.machine-metal2 {
      background: url("../images/machine_metall2.jpg") no-repeat;
      background-size: cover; }

    #content .well .image.machine-metal2:hover {
        /*background-size: 400%;*/
        -webkit-filter: grayscale(0);}

      }
#content .well.well-white {
  background: #fafafa; }
  #content .well.well-white hr {
    border-color: #EEEEEE; }

#content .well.machine-item,
#content .well.article-item {
  padding: 0;
  overflow: hidden; }
  #content .well.machine-item div[data-src],
  #content .well.article-item div[data-src] {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 175px;
    width: 100%; }
  #content .well.machine-item .block h1, #content .well.machine-item .block h2, #content .well.machine-item .block h3, #content .well.machine-item .block h4, #content .well.machine-item .block h5, #content .well.machine-item .block h6,
  #content .well.article-item .block h1,
  #content .well.article-item .block h2,
  #content .well.article-item .block h3,
  #content .well.article-item .block h4,
  #content .well.article-item .block h5,
  #content .well.article-item .block h6 {
    margin-top: 0; }
  #content .well.machine-item .block .detail-preview,
  #content .well.machine-item .block .key-data,
  #content .well.article-item .block .detail-preview,
  #content .well.article-item .block .key-data {
    color: #777; }
    #content .well.machine-item .block .detail-preview .fa,
    #content .well.machine-item .block .key-data .fa,
    #content .well.article-item .block .detail-preview .fa,
    #content .well.article-item .block .key-data .fa {
      color: #7793a9;
      width: 20px; }
  #content .well.machine-item .block ul.detail-preview,
  #content .well.article-item .block ul.detail-preview {
    border-left: solid 3px #ddd;
  margin-left: -5px;}

#content .well.article-item .block .text,
#content .well.article-item .block .text-collapse {
  font-family: "Roboto Condensed", "Noto", Arial;
  font-size: 75%; }

#content .well.article-item .block .btn-readmore {
  bottom: 0;
  left: 50%; }

#content .well.machine-item {
  padding: 0;
  overflow: hidden; }
  #content .well.machine-item ul {
    padding: 0;
    list-style: none;
    padding-left: 5px;
    margin-left: 15px;
    overflow: hidden; }
  #content .well.machine-item .machine-img {
    background-size: cover;
    background-repeat: no-repeat;
    height: 224px;
    width: 100%; }

#content .tab-content {
  margin-top: 20px; }

#content .padding {
  margin-top: 5px; }

footer {
  color: #e1dfd3; }
  footer .devider {
    height: 50px;
    width: 100%; }
  footer hr {
    border-top: solid 2px #a6a6a6; }
  footer .prefooter {
    padding: 35px;
    background: #171f24; }
  footer .footer {
    font-family: "Roboto";
    padding: 20px;
    background: rgba(16, 22, 26, 0.88); }
    footer .footer h3 {
      font-size: 120%;
      font-weight: 700;
      color: #078ed1;
      text-transform: uppercase; }
    footer .footer ul {
      font-size: 105%;
      padding-left: 0;
      list-style: none;
      color: #a3afb8; }
      footer .footer ul li a {
        color: #078ed1;
        text-transform: uppercase;
        font-weight: 300; }
    footer .footer p {
      padding: 15px 0;
      margin: 0;
      border-top: solid 2px #6b7d8a; }
    footer .footer .footer-row {
      margin: 0 0 70px 0; }

.cat-select {
  width: 100%;
  height: 300px;
  background-color: #e6e6e6;
  margin: 20px 0;
  overflow: hidden; }
  .cat-select .card {
    position: absolute;
    height: 300px;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    outline: solid 20px #f2f2f2;
    background-size: cover;
    transition: all .25s;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: pointer; }
    .cat-select .card:hover {
      -webkit-filter: grayscale(0%);
      -moz-filter: grayscale(0%);
      filter: grayscale(0%); }
    .cat-select .card.left {
      background-image: url(../images/home_machine_metall.jpg);
      left: 0;
      right: 50%; }
    .cat-select .card.right {
      background-image: url(../images/home_machine_textil.jpg);
      left: 50%;
      right: 0; }

.panel-heading {
  padding: 0; }
  .panel-heading .panel-title {
    padding: 0; }
    .panel-heading .panel-title a {
      color: #078ed1;
      display: block;
      padding: 10px; }
      .panel-heading .panel-title a:hover, .panel-heading .panel-title a:active, .panel-heading .panel-title a:focus {
        color: #078ed1;
        background: #ddd;
        text-decoration: none; }
    .panel-heading .panel-title a[data-toggle] {
      color: #fff; }
      .panel-heading .panel-title a[data-toggle] .fa {
        transition: all 0.3s; }
      .panel-heading .panel-title a[data-toggle]:hover {
        color: #fff;
        background: #3c6f97; }
      .panel-heading .panel-title a[data-toggle]:active {
        background: #356284; }
        .panel-heading .panel-title a[data-toggle]:active .fa-caret-down {
          transform: rotate(180deg);
          color: #078ed1; }
      .panel-heading .panel-title a[data-toggle]:focus {
        background: #078ed1; }

#accordion {
  margin-top: -10px; }
  #accordion h4.panel-title {
    font-size: 85%; }
  #accordion .fa {
    margin-right: 10px; }
  #accordion .panel {
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
    margin-top: 10px; }
    #accordion .panel.active .panel-heading {
      background: #999; }
      #accordion .panel.active .panel-heading a, #accordion .panel.active .panel-heading a > span {
        color: #fff; }
    #accordion .panel .panel-heading {
      border-radius: 0; }
  #accordion .panel-collapse.sub {
    margin-left: 50px; }
  #accordion .panel-collapse .list-group {
    margin-bottom: 0;
    background: none; }
    #accordion .panel-collapse .list-group .list-group-item {
      background: none;
      border-width: 1px 0; }
      #accordion .panel-collapse .list-group .list-group-item:first-child {
        border-top-right-radius: 0;
        border-top-left-radius: 0; }
  #accordion .panel-collapse .list-group-item {
    border-radius: 0; }


.article .btn {
  margin-top: 90px;}
