@font-face {
  font-family: 'fh';
  src: url('../Fonts/fh.eot?32943910');
  src: url('../Fonts/fh.eot?32943910#iefix') format('embedded-opentype'),
       url('../Fonts/fh.woff2?32943910') format('woff2'),
       url('../Fonts/fh.woff?32943910') format('woff'),
       url('../Fonts/fh.ttf?32943910') format('truetype'),
       url('../Fonts/fh.svg?32943910#fh') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fh';
    src: url('../Fonts/fh.svg?32943910#fh') format('svg');
  }
}
*/

 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fh";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-arrow_down:before { content: '\e800'; } /* '' */
.icon-arrow_first:before { content: '\e801'; } /* '' */
.icon-arrow_last:before { content: '\e802'; } /* '' */
.icon-arrow_right:before { content: '\e803'; } /* '' */
.icon-arrow_left:before { content: '\e804'; } /* '' */
.icon-arrow_up:before { content: '\e805'; } /* '' */
.icon-download_icon:before { content: '\e806'; } /* '' */
.icon-icon_fax:before { content: '\e807'; } /* '' */
.icon-icon_phone:before { content: '\e808'; } /* '' */
.icon-icon_home:before { content: '\e809'; } /* '' */
.icon-icon_print:before { content: '\e80a'; } /* '' */
.icon-pdf_icon:before { content: '\e80b'; } /* '' */
.icon-icon_share:before { content: '\e80c'; } /* '' */
.icon-icon_mail:before { content: '\e80d'; } /* '' */
.icon-facebook:before { content: '\e80e'; } /* '' */
.icon-twitter:before { content: '\e80f'; } /* '' */
.icon-g+:before { content: '\e810'; } /* '' */
.icon-icon_plus:before { content: '\e811'; } /* '' */
.icon-icon_minus:before { content: '\e812'; } /* '' */
.icon-iconmonstr-check-mark-13:before { content: '\e813'; } /* '' */
.icon-arrow-back:before { content: '\e814'; } /* '' */
.icon-icon_key:before { content: '\e815'; } /* '' */
.icon-arrow_noimage:before { content: '\e816'; } /* '' */
.icon-arrow_more:before { content: '\e817'; } /* '' */
.icon-arrow_lupe:before { content: '\e818'; } /* '' */
.icon-icon_scoll_mouse:before { content: '\e819'; } /* '' */
.icon-icon_scoll_arrow:before { content: '\e81a'; } /* '' */
#slider-links {
  align-items: center;
  display: flex;
  height:100%
}

#slider-links .link-container {
  display: flex;
  flex-direction: column;
  max-width:200px
}

#slider-links .link-container a {
  display: block;
  font-size: 20px;
  position: relative;
  padding:6px
}

#slider-links .link-container a:after {
  background-color: rgba(255, 255, 255, 0.75);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index:-1
}

@media screen and (min-width: 1200px) {
  #slider-links .link-container {
      flex-direction: row;
      max-width:none
  }

  #slider-links .link-container a {
      font-size:24px
  }

  #slider-links .link-container a:not(:first-child) {
      margin-left: 16px
  }
}


.frame-ticker {
  background-color: rgba(176, 9, 9, 0.9);
  bottom: 0;
  height: 4rem;
  left: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  width: 100%;
  z-index:2
}

.frame-ticker .frame-inner {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  padding-left: 100%;
  white-space: nowrap;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-name: ticker;
  animation-name: ticker;
  -webkit-animation-duration: 32s;
  animation-duration:32s
}

.frame-ticker .frame-inner p {
  color: #fff;
  display: inline-block;
  padding:0 2rem
}
@-webkit-keyframes ticker {
  0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
  }

  100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker {
  0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
  }

  100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
  }
}