
/* ========================================================================
   Typos / Icons
 ========================================================================== */
 

/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'),
       url('../fonts/open-sans-v15-latin-300.woff2') format('woff2'),
       url('../fonts/open-sans-v15-latin-300.woff') format('woff'),
       url('../fonts/open-sans-v15-latin-300.ttf') format('truetype');
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('../fonts/open-sans-v15-latin-regular.woff2') format('woff2'),
       url('../fonts/open-sans-v15-latin-regular.woff') format('woff'),
       url('../fonts/open-sans-v15-latin-regular.ttf') format('truetype');
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('../fonts/open-sans-v15-latin-700.woff2') format('woff2'),
       url('../fonts/open-sans-v15-latin-700.woff') format('woff'),
       url('../fonts/open-sans-v15-latin-700.ttf') format('truetype');
}

/* open-sans-800 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'),
       url('../fonts/open-sans-v15-latin-800.woff2') format('woff2'),
       url('../fonts/open-sans-v15-latin-800.woff') format('woff'),
       url('../fonts/open-sans-v15-latin-800.ttf') format('truetype');
}



/* ========================================================================
   General
 ========================================================================== */

html {
  /* 1 */
  font: 300 18px / 34px 'Open Sans', sans-serif;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  background: rgba(255, 255, 255, 1);
  color: rgba(100, 100, 100, 1);
}





p:last-child {  margin-bottom: 0;
  }

body, .uk-block-default {  background-color: rgba(255, 255, 255, 1);}


em {
	color: inherit;
}




.font-weight-light {
  font-weight: 300 !important;
}


.font-weight-regular {
   font-weight: 400 !important;
}


.font-weight-bold, strong, b {   font-weight: 700 !important;}

.font-weight-extra-bold {   font-weight: 800 !important;}


.text-shadow {  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);}







a:active,
a:hover {
  outline: 0;
}

a,
.uk-link,
.tm-main .uk-link-reset,
.uk-panel a  {
  color: rgba(0, 160, 225, 1);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color linear 0.1s;
  transition: color linear 0.1s;
}

a:hover,
.uk-link:hover,
.tm-main .uk-link-reset:hover {
 color: rgba(0, 160, 225, 1);
 text-decoration: none;
 font-weight: 700;
}



.tm-content a {
  color: rgba(0, 160, 225, 1);
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: color linear 0.1s;
  transition: color linear 0.1s;
}

.tm-content a:hover  {
  text-decoration: underline;
  color: rgba(0, 160, 225, 1);
}


.tm-main .uk-breadcrumb a,
.tm-main .tm-sidebar-b a {
   color: inherit;
  text-decoration: none;
}


	
a.readmore-button::before { content: "» ";}



.uk-panel-box {  color: inherit;}




.uk-grid-divider:empty {  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;  margin-top: 50px;}



@media (min-width: 1220px) {
.uk-grid-divider:empty {  margin-bottom: 75px;  margin-top: 75px;}
}



.smaller-shadow {
    -webkit-filter: drop-shadow(-5px 5px 5px #999);
    filter:         drop-shadow(-5px 5px 5px #999);}


.small-shadow {
    -webkit-filter: drop-shadow(-5px 20px 15px #666);
    filter:         drop-shadow(-5px 20px 15px #666);}

.big-shadow {
    -webkit-filter: drop-shadow(-15px 15px 25px #666);
    filter:         drop-shadow(-15px 15px 25px #666);  }


::-moz-selection {
  background: rgba(0, 34, 87, 0.7);
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: rgba(0, 34, 87, 0.7);
  color: #ffffff;
  text-shadow: none;
}

.uk-modal {
  background-color: rgba(50, 50, 50, 0.95);
}

@media (max-width: 767px) {
h1 br, h2 br, h3 br, h4 br {
  display:none
}
}


/* ========================================================================
   Component: Grid
 ========================================================================== */

/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.uk-grid {
  margin-left: -50px;
}
.uk-grid > * {
  padding-left: 50px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 50px;
}

/* Large screen and bigger */
@media (min-width: 768px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -50px;
  }
  .uk-grid > * {
    padding-left: 50px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid-margin,
  .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 50px;
  }
}

/* Medium */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -75px;
  }
  .uk-grid > * {
    padding-left: 75px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid-margin,
  .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 75px;
  }
}
/*
 * Collapse gutter
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}
.uk-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid-collapse + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-collapse > * > .uk-panel + .uk-panel {
  margin-top: 0;
}
/*
 * Small gutter
 */
/* Horizontal */
.uk-grid-small {
  margin-left: -15px;
}
.uk-grid-small > * {
  padding-left: 15px;
}
/* Vertical */
.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-small > * > .uk-panel + .uk-panel {
  margin-top: 15px;
}

@media (min-width: 960px) {
/*
 * Small gutter
 */
/* Horizontal */
.uk-grid-small {
  margin-left: -25px;
}
.uk-grid-small > * {
  padding-left: 25px;
}
/* Vertical */
.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-small > * > .uk-panel + .uk-panel {
  margin-top: 25px;
}	
}

/*
 * Medium gutter
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -50px;
}
.uk-grid-medium > * {
  padding-left: 50px;
}
/* Vertical */
.uk-grid-medium + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-medium > * > .uk-panel + .uk-panel {
  margin-top: 50px;
}

@media (min-width: 768px) {
/*
 * Medium gutter
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -50px;
}
.uk-grid-medium > * {
  padding-left: 50px;
}
/* Vertical */
.uk-grid-medium + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-medium > * > .uk-panel + .uk-panel {
  margin-top: 50px;
}
}


/*
 * Large gutter
 */
 
  .uk-grid-large {
    margin-left: -50px;
  }
  .uk-grid-large > * {
    padding-left: 50px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 50px;
  }
   
 
/* Large screen and bigger */
@media (min-width: 768px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -100px;
  }
  .uk-grid-large > * {
    padding-left: 100px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 100px;
  }
}
/* Extra Large screens */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -150px;
  }
  .uk-grid-large > * {
    padding-left: 150px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 150px;
  }
}




/* ========================================================================
/* Margin
 ========================================================================== */
 
.uk-margin-xsmall {
  margin-bottom: 15px;
}
* + .uk-margin-xsmall {
  margin-top: 15px;
}
.uk-margin-xsmall-top {
  margin-top: 15px !important;
}
.uk-margin-xsmall-bottom {
  margin-bottom: 15px !important;
}
.uk-margin-xsmall-left {
  margin-left: 15px !important;
}
.uk-margin-xsmall-right {
  margin-right: 15px !important;
}





.uk-margin-small {
  margin-bottom: 25px;
}
* + .uk-margin-small {
  margin-top: 25px;
}
.uk-margin-small-top {
  margin-top: 25px !important;
}
.uk-margin-small-bottom {
  margin-bottom: 25px !important;
}
.uk-margin-small-left {
  margin-left: 25px !important;
}
.uk-margin-small-right {
  margin-right: 25px !important;
}



.uk-margin-medium {
  margin-bottom: 50px;
}
* + .uk-margin-medium {
  margin-top: 50px;
}
.uk-margin-medium-top {
  margin-top: 50px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 50px !important;
}
.uk-margin-medium-left {
  margin-left: 50px !important;
}
.uk-margin-medium-right {
  margin-right: 50px !important;
}




.uk-margin {
  margin-bottom: 25px;
}
* + .uk-margin {
  margin-top: 25px;
}
.uk-margin-top{
  margin-top: 25px !important;
}
.uk-margin-bottom {
  margin-bottom: 25px !important;
}
.uk-margin-left {
  margin-left: 25px !important;
}
.uk-margin-right {
  margin-right: 25px !important;
}

.uk-margin-left, , .uk-margin-large-left {
  margin-left: 25px !important;
}

.uk-margin-bottom, .uk-margin-large-bottom  {
  margin-bottom: 25px !important;
}

.uk-margin-large{
  margin-bottom: 75px;
}
* + .uk-margin-large {
  margin-top: 75px;
}
.uk-margin-large-top  {
  margin-top: 75px !important;
}
.uk-margin-large-bottom  {
  margin-bottom: 75px !important;
}
.uk-margin-large-left {
  margin-left: 75px !important;
}
.uk-margin-large-right {
  margin-right: 75px !important;
}

.uk-margin-large-top-large  {
  margin-top: 75px !important;
}


@media (min-width: 768px) {

.uk-margin {
  margin-bottom: 50px;
}
* + .uk-margin {
  margin-top: 50px;
}
.uk-margin-top {
  margin-top: 50px !important;
}
.uk-margin-bottom {
  margin-bottom: 50px !important;
}
.uk-margin-left {
  margin-left: 50px !important;
}
.uk-margin-right {
  margin-right: 50px !important;
}


.uk-margin-medium {
  margin-bottom: 75px;
}
* + .uk-margin-medium {
  margin-top: 75px;
}
.uk-margin-medium-top {
  margin-top: 75px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 75px !important;
}
.uk-margin-medium-left {
  margin-left: 75px !important;
}
.uk-margin-medium-right {
  margin-right: 75px !important;
}


.uk-margin-large{
  margin-bottom: 100px;
}
* + .uk-margin-large {
  margin-top: 100px;
}
.uk-margin-large-top  {
  margin-top: 100px !important;
}
.uk-margin-large-bottom  {
  margin-bottom: 100px !important;
}
.uk-margin-large-left {
  margin-left: 100px !important;
}
.uk-margin-large-right {
  margin-right: 100px !important;
}

.uk-margin-large-top-large  {
  margin-top: 100px !important;
}
}

@media (min-width: 1220px) {

.uk-margin-medium {
  margin-bottom: 100px;
}
* + .uk-margin-medium {
  margin-top: 100px;
}
.uk-margin-medium-top {
  margin-top: 100px !important;
}
.uk-margin-medium-bottom {
  margin-bottom: 100px !important;
}
.uk-margin-medium-left {
  margin-left: 100px !important;
}
.uk-margin-medium-right {
  margin-right: 100px !important;
}



.uk-margin-large{
  margin-bottom: 150px;
}
* + .uk-margin-large {
  margin-top: 150px;
}
.uk-margin-large-top  {
  margin-top: 150px !important;
}
.uk-margin-large-bottom  {
  margin-bottom: 150px !important;
}
.uk-margin-large-left {
  margin-left: 150px !important;
}
.uk-margin-large-right {
  margin-right: 150px !important;
}

.uk-margin-large-top-large  {
  margin-top: 150px !important;
}
}


/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='uk-column-'] {
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}


@media (min-width: 1220px) {
[class*='uk-column-'] {
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
}
/* ========================================================================
/* Component: Article
 ========================================================================== */

 
  .uk-article + .uk-article {
    margin-top: 25px;
    padding-top: 25px;
    border-top: solid 1px rgba(200, 200, 200, 1);
  }


@media (min-width: 768px) {
  .uk-article + .uk-article {
    margin-top: 50px;
    padding-top: 50px;
  }
}


@media (min-width: 1220px) {
  .uk-article + .uk-article {
    margin-top: 75px;
    padding-top: 75px;    
  }
}


  .uk-article h2 a {
    color: rgba(0, 0, 0, 1);
  }
  
    .uk-article h2 a:hover,
    .uk-article h2 a:focus {
    color: rgba(0, 160, 225, 1);
    text-decoration: none;
  }
  
 .uk-article-meta {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 160, 225, 1);
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

 * + .uk-article-meta {
  margin-top: 25px;
}

.tm-blog-single > .uk-article-meta {
	margin-bottom: 25px;
}

.tm-blog-single > .uk-article-title, .tm-blog-single > .uk-article-meta {
	text-align: left;
} 

a.readmore{
 -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
  background-color: rgba(0, 160, 225, 1);
  color: rgba(255, 255, 255, 1);
  padding: 5px 15px;
  display: table;
} 

a.readmore:hover,
a.readmore:focus{
 text-decoration: none;
 background-color: rgba(0, 144, 54, 0.8);
} 

/* ========================================================================
/* Container
 ========================================================================== */
 
.uk-container {
  box-sizing: border-box;
  max-width: 1030px;
  padding: 0 15px;
}


@media (min-width: 960px) {
  .uk-container {
    padding: 0 25px;
  }
}


/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-container {
    max-width: 1400px;
    padding: 0 50px;
  }
}



/* ========================================================================
   Component: Blocks
 ========================================================================== */
 
 .tm-block-fullwidth > .uk-container {  max-width: 100%;}


.tm-grid-collapse > .uk-container {  padding: 0;}

.tm-grid-collapse {
    padding: 0;
}

.tm-block-collapse {
    padding: 0;
}


.uk-block {
  position: relative;
  box-sizing: border-box;
  padding-top: 25px;
  padding-bottom: 25px;
}

.tm-main-top + .tm-content, .tm-content + .tm-main-bottom {  margin-top: 25px;}

.tm-main-bottom-no-margin-top {  margin-top: -25px;} 


/* Phone landscape and bigger */
@media (min-width: 768px) {
  .uk-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
   .tm-main-top + .tm-content, .tm-content + .tm-main-bottom {  margin-top: 50px;} 

}
 
 
@media (min-width: 1220px) {
  .uk-block {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  
  .tm-main-top + .tm-content, .tm-content + .tm-main-bottom {  margin-top: 75px;}

.tm-main-bottom-no-margin-top {  margin-top: -75px;} 
} 
  

  
.uk-block-small {
  padding-top: 25px;
  padding-bottom: 25px;
}


/* Phone landscape and bigger */
@media (min-width: 768px) {
  .uk-block-small {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
 
 
 .uk-block-smaller {
  padding-top: 25px;
  padding-bottom: 25px;
}



.tm-navbar-absolute + .tm-block-main {
    padding-top: 85px;
  }



@media (min-width: 768px) {
.tm-navbar-absolute + .tm-block-main {
    padding-top: 160px;
  }
}
 

@media (min-width: 1220px) {
.tm-navbar-absolute + .tm-block-main {
    padding-top: 210px;
  }
}




/* ========================================================================
   Colors / Backgrounds
 ========================================================================== */



 .blue {
  color: rgba(0, 160, 225, 1) !important;
}

 .white,
 .bg-blue h1, .bg-blue uk-h1,
 .bg-blue h2, .bg-blue uk-h2,
 .bg-blue h3, .bg-blue uk-h3,
 .bg-blue h4, .bg-blue uk-h4 {
  color: rgba(255, 255, 255, 1) !important;
}


 .grey {
  color: rgba(100, 100, 100, 1) !important;
}

 .bg-white {
  background-color: rgba(255, 255, 255, 1) !important;
}


 .bg-blue {
  background-color: rgba(0, 160, 225, 1) !important;
}


 .bg-light-grey  {
  background-color: rgba(240, 240, 240, 1) !important;
}

 .bg-grey  {
  background-color: rgba(220, 220, 220, 1) !important;
}

 .bg-opacity  {
 opacity: 0.85 !important;
}

/* ========================================================================
   Headings
 ========================================================================== */
 
/* Block elements
 ========================================================================== */
/*
 * Reset margin
 */
blockquote,
figure {
  margin: 0;
}
/*
 * Margins
 */
p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0 0 25px 0;
}


ul.last-child {
  margin: 0;
}


ul.content {
  list-style: none;
  padding: 0;
}

ul.content li {
 padding-left: 2.2em;
text-indent: -1.6em;
}

ul.content li::before {
 font-family: FontAwesome;	
  content: "\f00c";
  color: rgba(0, 160, 225, 1);
  padding-right: .7em;
}

* + p,
* + ul,
* + ol,
* + dl,
* + blockquote,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 25px;
}




h1, .uk-h1, h2, .uk-h2, h3, .uk-h3, h4, .uk-h4, h5, .uk-h5 {  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0;
  margin: 0 0 25px 0;
  color: rgba(0, 160, 225, 1);
  font-weight: 300; 
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;}


h3, .uk-h3, h4, .uk-h4, h5, .uk-h5 {
  letter-spacing: 0.01em;}




/*
 * Margins
 */
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 25px;
}


@media (min-width: 768px) {
h1 + h2,
h2 + h3,
h2 + h4 {
  margin-top: -15px;
}
}





.uk-heading-large {
	font-size: 75px;
    line-height: 90px;
	font-weight: 500;
}

.uk-line-height-higher {
	line-height: 2.5em;
}		


h1, .uk-h1 {  font-size: 60px;  line-height: 75px;
  letter-spacing: 0.01em;}

h2, .uk-h2 {  font-size: 50px;  line-height: 65px;
  letter-spacing: 0.01em;}

h3, .uk-h3 {  font-size: 40px;  line-height: 55px;}

h4, .uk-h4 {  font-size:30px;  line-height: 45px;}

h5, .uk-h5 {  font-size: 20px;  line-height: 35px;
  letter-spacing: 0;}


h6, .uk-h6 {  font-size: 18px;  line-height: 34px;
  font-family: 'Open Sans', sans-serif; 
  letter-spacing: 0.0;}

@media (max-width: 767px) {
	
blockquote,
figure {
  margin: 0;
}
/*
 * Margins
 */
p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0 0 15px 0;
}
* + p,
* + ul,
* + ol,
* + dl,
* + blockquote,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 15px;
}	
	
h1, .uk-h1, h2, .uk-h2, h3, .uk-h3, h4, .uk-h4, h5, .uk-h5 {
  margin: 0 0 15px 0;}

/*
 * Margins
 */
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 15px;
}


.uk-heading-large {
	font-size: 2em;
    line-height: 1.4em;
}	
	
h1, .uk-h1 {  font-size: 1.8em;  line-height: 1.6em;}

h2, .uk-h2 {  font-size: 1.6em;  line-height: 1.8em;}

h3, .uk-h3 {  font-size: 1.4em;  line-height: 1.6em;}

h4, .uk-h4 {  font-size: 1.2em;  line-height: 1.5em;}

h5, .uk-h5 {  font-size: 1em;  line-height: 1.2em;}



 .text-larger {  font-size: 2.5em;} 

}


 .text-smaller {  font-size: 0.9em ;
  line-height: 1.9em;} 

 .text-larger {  font-size: 3.5em !important;
  line-height: 1.1em !important;} 

 .text-xlarger, .uk-text-large,{  font-size: 5.5em !important;
  line-height: 1.1em !important;} 


/* ========================================================================
   Animation
 ========================================================================== */


.uk-animation-shake {
  -webkit-animation: uk-shake 2s infinite 1s;
  animation: uk-shake 2s infinite 1s;
}

.uk-animation-slide-bottom-custom {
  -webkit-animation: uk-fade-bottom-custom 2s infinite 1.1s;
  animation: uk-fade-bottom-custom 2s infinite 1.1s;
}

/*
 * Bottom
 */
@-webkit-keyframes uk-fade-bottom-custom {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }  
}
@keyframes uk-fade-bottom-custom {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }  
}

/* ========================================================================
   Logo
 ========================================================================== */



.tm-logo img,
.tm-logo-small img {  
  height: 100px;}



@media (min-width: 960px) {
.tm-logo img {  height: 140px;}
}



/* ========================================================================
   Toolbar
 ========================================================================== */

.tm-toolbar {
	position: absolute;
	top: 10px;
	right: 15px;
	padding: 0;
	z-index: 999;
}



.tm-toolbar a {
  color: rgba(0, 0, 0, 1);
    -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.tm-toolbar a:active, .tm-toolbar a:hover, .tm-toolbar a:focus {
  color: rgba(0, 160, 225, 1);
}

.tm-toolbar .uk-flex .uk-panel {
	margin: 0;
	float: left;
}

.tm-toolbar .toolbar-r .uk-panel:nth-child(n+2) {
	margin: 0 0 0 25px;
	float: left;
}


.tm-toolbar .toolbar-r > *:nth-child(n+2)::before {  border-left: 1px solid rgba(0, 0, 0, 1);  margin-right: 25px;}

.tm-toolbar .toolbar-r > *::before {  content: "";  display: inline-block;  height: 18px;  vertical-align: middle;}

/* Direktkontakt */
.tm-toolbar i {
	font-size: 30px;
	padding-right: 20px;
	vertical-align: middle;
    color: rgba(0, 160, 225, 1);
}


.tm-toolbar .number {
	font-size: 25px;
	letter-spacing: -0.02em;
	color: rgba(0, 160, 225, 1);
}

/* Suche */
.tm-toolbar .uk-search::before {
	content: "\f002";
	font-family: FontAwesome;
	font-size: 25px;
	
}

.tm-toolbar .uk-search-field {
	padding: 0;
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
	color: rgba(0, 0, 0, 1);
	width: 25px;
 font-weight: 300;
   font-family: 'Open Sans', sans-serif;
}

.uk-search-field:focus, .uk-search.uk-active .uk-search-field {
	padding: 0 50px;
}


/* Flags */


div.mod-languages a {
	text-decoration: none;
	color: rgba(255, 255, 255, 1);
	font-weight: 400;
	border-radius: 100%;
	border: 2px solid #FFF;
	width: 30px;
height: 30px;
  display: inline-block;
  box-sizing: border-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
    -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;	
}

div.mod-languages a:hover, div.mod-languages a:active, div.mod-languages a:focus {
	text-decoration: none;
	color: rgba(0, 160, 225, 1);
	background-color: rgba(255, 255, 255, 1);

}

.mod-languages li img{
	opacity: 0.8;
-webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;	
}


.mod-languages li.lang-active img, .mod-languages li:hover img{
	opacity: 1;	
}

div.mod-languages li {
	margin: 0 0 0 10px;
}




@media (max-width: 959px) {
.mod-languages li img  {  width: 30px;
  height: inherit;}
}



/* ========================================================================
   Navbar
 ========================================================================== */



.tm-navbar-absolute {
	z-index: 1001;
}


.tm-navbar,
.tm-navbar.uk-active {  padding-bottom: 25px;  padding-top: 25px;  position: relative;} 



@media (min-width: 960px) {
.tm-navbar {  padding-bottom: 50px;  padding-top: 50px;} 

.tm-toolbar + div > .tm-navbar:not(.uk-active) {  padding-top: 0;} 
 
} 



 .uk-navbar {
  background-color: rgba(255, 255, 255, 1);
  background-image: none;
}

 .uk-navbar.uk-active {
  background-color: rgba(0, 160, 225, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
 
.tm-navbar-absolute .uk-navbar:not(.uk-active) {
	background-color: transparent;
	background-image: none;
}



.uk-navbar-nav > li {
  margin: 0;
}
 
 
 .uk-navbar-nav > li > a {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  /* 1 */
  height: auto;
  line-height: 10px;
  color: rgba(100, 100, 100, 1);
  /* 2 */
  font-size: 18px;
  padding: 0 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.uk-navbar-nav {
	margin-right: -25px;
}

.uk-navbar.uk-active .uk-navbar-nav > li > a {
  color: rgba(255, 255, 255, 1);
}

.uk-navbar.uk-active .uk-navbar-nav > li.uk-active > a,
.uk-navbar.uk-active .uk-navbar-nav > li > a:active,
.uk-navbar.uk-active .uk-navbar-nav > li:hover > a,
.uk-navbar.uk-active .uk-navbar-nav > li > a:focus,
.uk-navbar.uk-active .uk-navbar-nav > li.uk-open > a  {
  color: rgba(0, 160, 230, 1);
}




@media (min-width: 1220px) {
 .uk-navbar-nav > li > a {
  padding: 0 40px;
}


.uk-navbar-nav {
margin-right: -40px;
}		
}


	
	
.uk-navbar-nav > li > a:after {
  content: '';
  position: absolute;
  bottom: inherit;
  left: 25%;
  top:0;
  height: 0;
  width: 0;
  background: rgba(0, 160, 225, 1);
  -webkit-transition: width 0.25s ease, color 0.15s ease;
  transition: width 0.25s ease, color 0.15s ease;
  display:none;
}
/* Appear not as link */
.uk-navbar-nav > li > a[href='#'] {
  cursor: text;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-open > a {
  background-color: rgba(0, 0, 0, 0);
  color: rgba(0, 160, 225, 1);
  /* 3 */
  outline: none;
}
.uk-navbar-nav > li:hover > a:after,
.uk-navbar-nav > li > a:focus:after,
.uk-navbar-nav > li.uk-open > a:after {
  height: 2px;
  width: 50%;
}
/* OnClick */
.uk-navbar-nav > li > a:active {
  background-color: rgba(0, 0, 0, 0);
  color: rgba(0, 160, 225, 1);
}
/* Active */
.uk-navbar-nav > li.uk-active > a {
  background-color: rgba(0, 0, 0, 0);
   color: rgba(0, 160, 225, 1);
}
.uk-navbar-nav > li.uk-active > a:after {
  height: 2px;
  width: 50%;

}


/* Shop Up Navigation - Animation without opacity */   

.tm-navbar.uk-animation-slide-top {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease !important;
  animation-timing-function: ease !important;

}




.uk-navbar .uk-navbar-nav > li > a > i {
	display: block;
	font-size: 30px;
	text-align: center;
	padding-bottom: 15px;
}


.uk-navbar.uk-active .uk-navbar-nav > li > a {
  font-size: 16px;
}

.uk-navbar.uk-active .uk-navbar-nav > li > a > i {
	font-size: 20px;
	padding-bottom: 12px;
}


/* ========================================================================
   Component: Dropdown
 ========================================================================== */

/* Sub-Menu Grid auf volle Breite des Overlay, ab 768px */    


.uk-dropdown {  padding: 15px 25px;}

@media (min-width: 768px) {
  /*
     * Horizontal gutter
     */
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid {
    margin-left: -25px;
    margin-right: -25px;
  }
  .uk-dropdown:not(.uk-dropdown-stack) > .uk-dropdown-grid > [class*='uk-width-'] {
    padding-left: 25px;
    padding-right: 25px;
  }
  }

.uk-dropdown, .uk-dropdown-blank {  width: 300px;
  text-align: center;}
  

.uk-dropdown .uk-nav {  margin: 0;}


.uk-dropdown-navbar {
  background: rgba(0, 160, 225, 1) none repeat scroll 0 0;  color: #6d6d77;  margin-top: 30px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);}




.uk-dropdown-navbar::before {  border-color: transparent transparent rgba(0, 160, 225, 1);  border-style: solid;  border-width: 0 8px 10px;  content: "";  left: 48%;  position: absolute;  top: -10px;}

.uk-open > .uk-dropdown-navbar {
  -webkit-animation: uk-slide-bottom-fixed 0.2s ease-in-out;
  animation: uk-slide-bottom-fixed 0.2s ease-in-out;
}

.uk-dropdown-navbar .uk-nav-navbar > li > a {  font-family: 'Open Sans', sans-serif;  font-size: 16px;
  line-height:1.3em;  font-weight: 300;  letter-spacing: 0.05em;  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  padding: 15px 0;}


.uk-dropdown-navbar .uk-nav-navbar > li:not(:last-child):after  {
    content: "";
  display: block;
  background-image: url("../images/border.gif");
  background-repeat: repeat-x;
  height: 2px;}


.uk-dropdown-navbar .uk-nav-navbar > li.uk-active > a,
.uk-dropdown-navbar .uk-nav-navbar > li:hover > a,
.uk-dropdown-navbar .uk-nav-navbar > li > a:focus,
.uk-dropdown-navbar .uk-nav-navbar > li > a:active{
  color: rgba(0, 160, 230, 1);}



.uk-dropdown-navbar .uk-nav-navbar > li > ul {
  padding:0 0 15px 0;
 }



.uk-dropdown-navbar .uk-nav-navbar > li > ul > li > a {
  font-size: 16px;  font-weight: 300;
   letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
  line-height: 26px;
padding: 8px 0;}

.uk-dropdown-navbar .uk-nav-navbar > li > ul > li:first-child > a {
padding-top: 0;}

.uk-dropdown-navbar .uk-nav-navbar > li > ul > li:last-child > a {
padding-bottom: 0;}



.uk-dropdown-navbar .uk-nav-navbar > li > ul > li.uk-active > a,
.uk-dropdown-navbar .uk-nav-navbar > li > ul  > li:hover > a,
.uk-dropdown-navbar .uk-nav-navbar > li > ul  > li > a:focus,
.uk-dropdown-navbar .uk-nav-navbar > li > ul  > li > a:active{
  color: rgba(0, 0, 0, 1);}


/* Scrollnavi grün */
.tm-navbar.uk-active .uk-dropdown-navbar .uk-nav-navbar > li > a{  font-size: 16px;}



.tm-navbar.uk-active .uk-dropdown-navbar  {   background: rgba(0, 160, 225, 1) none repeat scroll 0 0;}


.tm-navbar.uk-active .uk-dropdown-navbar {  margin-top: 35px;}





/* ========================================================================
   Sidebar Menu
 ========================================================================== */


.uk-nav-side > li > a {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-transform: none;
	letter-spacing: 0.02em;
	color: rgba(0, 0, 0, 1);
	padding: 15px 25px;
	background-color: rgba(230, 230, 230, 1);
	transition: background 0.4s ease;
}

.uk-nav-side > li:nth-child(n+2) {
margin-top: 2px;
}

.uk-nav-side > li > a:hover,
.uk-nav-side > li > a:focus,
.uk-nav-side > li.uk-active > a {
  background: rgba(0, 160, 225, 1);
  color: rgba(255, 255, 255, 1);
}


.uk-nav-side > li > a:before {
	 content: "\f0a9";
      font-family: FontAwesome;
      display: inline-block;
      width: 30px;
}

.tm-sidebar-a h2, .tm-sidebar-b h2 {
	margin-bottom: 25px !important;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(200, 200, 200, 0.4);
	font-size: 1.2em;
	line-height: 1.4em;
	text-transform: uppercase;
	text-align: left !important;
}


/* ========================================================================
   Widgetkit Grid Margin Fixen
 ========================================================================== */



.fix-margin .uk-panel .uk-margin {  margin: 0;}



/* ========================================================================
   Offcanvas
 ========================================================================== */


.uk-offcanvas-bar {  background: none repeat scroll 0 0 rgba(0, 160, 225, 1);
  text-transform: uppercase;}

.uk-nav-offcanvas.uk-nav > li > a {  font-family: 'Open Sans', sans-serif;  font-size: 20px;  font-weight: 300;  letter-spacing: 0.03em;  text-transform: uppercase;
  color: #FFF;
  padding: 10px 20px;
  border-top: none;
   -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;}

.uk-nav-offcanvas.uk-nav > li > a > i {  font-size: 25px;
  padding-right: 10px;}

html .uk-nav.uk-nav-offcanvas > li.uk-active > a {
	color: rgba(0, 160, 230, 1);
}

.uk-nav-offcanvas > .uk-open > a,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:hover,
html:not(.uk-touch) .uk-nav-offcanvas > li > a:focus {
  background: none repeat scroll 0 0 rgba(0, 160, 225, 1);
  color: rgba(255, 255, 255, 1);
  /* 2 */
  outline: none;
}

html:not(.uk-touch) .uk-nav-offcanvas li a:hover,
html:not(.uk-touch) .uk-nav-offcanvas li a:focus {
  color: rgba(0, 160, 230, 1);
}

html .uk-nav.uk-nav-offcanvas > li.uk-active  {
  background: none repeat scroll 0 0 rgba(0, 160, 225, 1);
  color: rgba(0, 0, 0, 1);
}

html .uk-nav.uk-nav-offcanvas .uk-nav-sub > li.uk-active > a,
html .uk-nav.uk-nav-offcanvas .uk-nav-sub > li.uk-active > ul > li.uk-active > a {
  color: rgba(0, 160, 230, 1);
}


.uk-nav-offcanvas.uk-nav > li > ul > li > a {  font-size: 16px;  font-weight: 300;  letter-spacing: 0.06em;
  color: #FFF;
  padding: 10px 0;
  line-height: 1.8em;}

.uk-nav-offcanvas.uk-nav > li > ul > li > ul > li > a {  padding: 0;
  text-transform: none;
  font-size: 15px;  font-weight: 400;  letter-spacing: 0.04em;
  color: #FFF;}

.uk-nav-offcanvas.uk-nav > li > ul > li > ul > li > a::before {
	content: "\f10c";
	font-family: FontAwesome;
	display: inline-block;
	width: 20px;
	font-size: 8px;
	vertical-align: middle;
	line-height: 8px;
}

.uk-nav-offcanvas ul.uk-nav-sub {
	padding: 0 20px 15px 35px;
}


.uk-nav-offcanvas.uk-nav > li:not(:last-child):after  {
  content: "";
  display: block;
  border-bottom: solid 1px #FFF;
  opacity: 0.15;}

.uk-nav-offcanvas ul {
	padding: 0 0 15px 15px;
}

/* ========================================================================
   Search
 ========================================================================== */

.search {  padding-top:35px;}

.uk-dropdown-search {  top: 75px;}

.uk-nav-header {  font-family: 'Open Sans', sans-serif;  font-size: 18px;  font-weight: normal;  padding: 8px 0;  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.03em;}

li.uk-nav-header {
	padding: 15px 0;
}

.uk-search-field {  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;  border: 1px solid rgba(0, 0, 0, 0);  color: rgba(0, 160, 225, 1);  height: 36px;  width: 30px;
  font-weight: 700;
  font-size: 20px;}

.uk-search::before {  color: rgba(0, 160, 225, 1);  font-size: 24px;  line-height: 36px;  width: 30px;}

/* Placeholder */
.uk-search-field:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0) !important;
}
.uk-search-field::-moz-placeholder {
  color: rgba(0, 0, 0, 0);
}
.uk-search-field::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0);
}


/* Placeholder Focus */
.uk-search-field:focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}
.uk-search-field:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.uk-search-field:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.uk-search-field:focus, .uk-search.uk-active .uk-search-field {  width: 300px;}

/* Focus */
.uk-search-field:focus {
  outline: 0;
}
/* Focus + Active */
.uk-search-field:focus,
.uk-search.uk-active .uk-search-field {
  width: 300px;
}


.uk-dropdown-search {
  width: 300px;
  margin-top: 0;
  background: rgba(0, 160, 225, 1);
  color: #999999;
  border-color: rgba(0, 0, 0, 0);
}
.uk-dropdown-search:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 48%;
  border-width: 0 8px 10px 8px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 160, 225, 1);
}


.uk-nav-search > li > a {
  color: rgba(255, 255, 255, 1);
  line-height: 28px;
  font-size: 18px;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 0;
  padding: 15px 0;
  font-family: 'Open Sans', sans-serif;
}

.uk-nav-search > li > a > div {
  color: rgba(255, 255, 255, 1);
  line-height: 28px;
  font-size: 18px;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 0;
}
/*
 * Active
 * 1. Remove default focus style
 */
.uk-nav-search > li.uk-active > a {
  background: rgba(0, 0, 0, 0);
   color: rgba(255, 255, 255, 1);
  /* 1 */
  outline: none;
}
/*
 * Sub-object: `uk-nav-header`
 */
.uk-nav-search .uk-nav-header {
  color: #ffffff;
}
/*
 * Sub-object: `uk-nav-divider`
 */
.uk-nav-search .uk-nav-divider {
  border-top: 1px solid rgba(0, 160, 230, 1);
}
/*
 * Nested items
 */
.uk-nav-search ul a {
   color: rgba(255, 255, 255, 1);
}
.uk-nav-search ul a:hover {
   color: rgba(0, 160, 230, 1);
}

.uk-nav-search > li:hover > a,
.uk-nav-search > li:focus > a, 
.uk-nav-search > li:hover > a > *,
.uk-nav-search > li:focus > a > * {
     color: rgba(0, 160, 230, 1);
}

.uk-nav-search > li > a > span.highlight {
     font-weight: 300;
     color: rgba(0, 160, 230, 1);
     font-family: 'Open Sans', sans-serif;
}



/* ========================================================================
   Component: Overlay
 ========================================================================== */

/* Modifier `uk-overlay-background`
 ========================================================================== */
.uk-overlay-background {
  background: rgba(0, 160, 225, 0.85);
}

/* Sub-object `uk-overlay-icon`
 ========================================================================== */
.uk-overlay-icon:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17.5px;
  margin-left: -17.5px;
  font-size: 35px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #ffffff;
}



/* ========================================================================
   Slideshows
 ========================================================================== */


.uk-slideshow-fullscreen, .uk-slideshow-fullscreen > li {  height: 100vh;}





/* ========================================================================
   Toggle
 ========================================================================== */

.uk-navbar-toggle {
  font-size: 20px;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  margin: 0 0 0 15px;
}


.uk-navbar.uk-active .uk-navbar-toggle {
  color: rgba(255, 255, 255, 1);
}

/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
  color: rgba(0, 160, 225, 1);
  text-decoration: none;
  /* 2 */
  outline: none;
}


.uk-navbar-toggle:after {
  content: "\f0c9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}


.uk-offcanvas-page .uk-navbar-toggle:after {
  content: "\f00d";
}



	
.tm-navbar-toggle{
overflow:hidden;
margin-top:0;
margin-bottom:0;
display:block;
text-align:center;
text-transform:uppercase;
width:52px;
line-height:0;
height:44px;
float:right;
color:#000;
font-size:9px;
line-height:13px
}

.tm-navbar-toggle .animation-container{
width:52px;
height:33px;
display:block;
position:relative
}

.tm-navbar-toggle .bar{
display:block;
height:3px;
background:#000;
position:absolute;
width:30px;
left:11px;
top:12px;
border-radius:2px;
-webkit-transition:all .25s cubic-bezier(0.83, 0.16, 0.38, 0.9) 0s;
transition:all .25s cubic-bezier(0.83, 0.16, 0.38, 0.9) 0s
}

.uk-navbar.uk-active .tm-navbar-toggle .bar {
	background: #FFF;
}


.tm-navbar-toggle .bar.bar-center{
top:20px
}

.tm-navbar-toggle .bar.bar-bottom{
top:28px
}

.tm-navbar-toggle .bar.bar-top{
-webkit-animation:barTopReverse 0.5s;
animation:barTopReverse 0.5s
}

.tm-navbar-toggle .bar.bar-bottom
{-webkit-animation:barBottomReverse 0.5s;
animation:barBottomReverse 0.5s
}





	
@keyframes barTop{
	
	0%{
	top:12px
	}
	
	50%{
	top:20px;
	-webkit-transform:rotate(0deg);
	transform:rotate(0deg)
	}
	
	100%{
	top:20px;
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg)
	}
	}
	
@keyframes barBottom{
	
	0%{
	top:28px
	}
	
	50%{
	top:20px;
	-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}

100%{
top:20px;
-webkit-transform:rotate(-45deg);
transform:rotate(-45deg)}}

@keyframes 
barBottomReverse{
	
0%{
top:20px;
-webkit-transform:rotate(-45deg);
transform:rotate(-45deg)
}

50%{
top:20px;
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}

100%{
top:28px;
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
}


@keyframes barTopReverse{

0%{
top:20px;
-webkit-transform:rotate(45deg);
transform:rotate(45deg)
}

50%{
top:20px;
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}

100%{
top:12px;
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
}

.uk-offcanvas-page .tm-navbar-toggle .bar{
background:#000;
-webkit-transition:all .25s cubic-bezier(0.83, 0.16, 0.38, 0.9) 0s;
transition:all .25s cubic-bezier(0.83, 0.16, 0.38, 0.9) 0s
}

.uk-offcanvas-page .tm-navbar-toggle .bar.bar-top{
-webkit-animation:barTop 0.5s forwards;
animation:barTop 0.5s forwards
}

.uk-offcanvas-page .tm-navbar-toggle .bar.bar-center{
opacity:0
}

.uk-offcanvas-page .tm-navbar-toggle .bar.bar-bottom{
-webkit-animation:barBottom 0.5s forwards;
animation:barBottom 0.5s forwards
}





/* ========================================================================
   Scrollbar
 ========================================================================== */

.tm-scrollbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}





.tm-scrollbar .uk-icon-button {
  box-sizing: border-box;
  display: inline-block;
  width: 50%;
  height: 50px;
  background: rgba(0, 160, 225, 0.85);
  color: rgba(255, 255, 255, 1);
  font-size: 50px;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  transition-timing-function: ease;
  line-height: 50px;
}

.tm-scrollbar .uk-icon-envelope-o {
	 font-size: 35px;
}

.tm-scrollbar .uk-icon-button {
box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
}



.tm-scrollbar .uk-visible-small .uk-icon-button:nth-child(n+2) {
	border-left: 1px solid #FFF;
}




@media (min-width: 960px) {
	
.tm-scrollbar .uk-icon-button {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 60px;
}

.tm-scrollbar .uk-icon-button  {
box-shadow: none;
}

.tm-scrollbar .uk-icon-button:nth-child(n+2) {
	margin-top: 5px;
}	
	
.tm-scrollbar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70px;
  padding-right: 0;
}

.tm-scrollbar .uk-icon-envelope-o {
	 font-size: 40px;
}	
	
}


@media (max-width: 959px) {
.tm-scrollbar .uk-panel {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}		
}	

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.tm-scrollbar .uk-icon-button:hover,
.tm-scrollbarr .uk-icon-button:focus,
.tm-scrollbar .uk-icon-button:active {
  background-color: rgba(0, 160, 225, 1);
  color: rgba(255, 255, 255, 1);
  /* 2 */
  outline: none;
  transform: none;
  font-weight: inherit;
}


.uk-tooltip {
	max-width: 350px;
	padding: 10px 20px;
	background: rgba(0, 160, 230, 1);
	color: #ffffff;
	font-size: 20px;
	line-height: 26px;
	word-break: normal;
	border-radius: 0;
	letter-spacing: 0.02em;
	font-weight: 400;
}

.uk-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed rgba(0, 160, 230, 1);
}

.uk-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: rgba(0, 160, 230, 1);
}




/* ========================================================================
   Icon
 ========================================================================== */

.uk-icon-large {
  font-size: 150px;
}

@media (max-width: 767px) {	
.uk-icon-large {
  font-size: 80px;
}
}



/* ========================================================================
   Panelbox
 ========================================================================== */


.uk-panel-box {  background: rgba(255, 255, 255, 1) none repeat scroll 0 0;  padding: 15px;
   box-shadow: none;}

.uk-panel-box-primary {  background-color: rgba(0, 160, 225, 1);
  color: rgba(255, 255, 255, 1) !important;
  border: none;}

.uk-panel-box-primary > * {
  color: rgba(255, 255, 255, 1) !important;}

.uk-panel-box-secondary {  background-color: rgba(240, 240, 240, 1);
  color: rgba(0, 0, 0, 1);
  border: none;}

.uk-panel-box-hover, .uk-panel-box-primary-hover, .uk-panel-box-secondary-hover {
 
    -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;}

.uk-panel-box-hover:hover, .uk-panel-box-primary-hover:hover, .uk-panel-box-secondary-hover:hover {
	box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.2);
	color: inherit;
	background-color: rgba(0, 160, 230, 1);
	}



.uk-panel-box-secondary a:hover, .uk-panel-box-secondary a:focus {
	text-decoration: underline;
	color: rgba(0, 160, 225, 1)
}

/*
.uk-panel-box > * {
  text-align: left;}
*/

.uk-panel-box > .uk-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

.uk-panel-teaser {
	margin-bottom: 15px;
}



.uk-panel-box * + .uk-margin {
  margin-top: 25px;
}


.uk-panel-box-hover:hover {
  color: inherit;
}

@media (min-width: 768px) {
.uk-panel-box {  padding: 25px;}

.uk-panel-box > .uk-panel-teaser {
  margin-top: -25px;
  margin-left: -25px;
  margin-right: -25px;
}

.uk-panel-teaser {
	margin-bottom: 25px;
}
}


/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Remove whitespace between child elements when using `inline-block`
 */
.uk-breadcrumb {
  /* 1 */
  padding: 0 0 10px 0;
  list-style: none;
  /* 2 */
  font-size: 0.001px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(200, 200, 200, 0.4);
}
/* Items
 ========================================================================== */
/*
 * Reset whitespace hack
 */
.uk-breadcrumb > li {
  font-size: 12px;
  vertical-align: top;
}
.uk-breadcrumb > li,
.uk-breadcrumb > li > a,
.uk-breadcrumb > li > span {
  display: inline-block;
  color: rgba(200, 200, 200, 1);
}
.uk-breadcrumb > li:nth-child(n+2):before {
  content: "//";
  display: inline-block;
  margin: 0 10px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(200, 200, 200, 1);
}
/*
 * Disabled
 */
.uk-breadcrumb > li.uk-active,
.uk-breadcrumb > li.uk-active > span {
  color: rgba(0, 160, 225, 1);
  font-family: 'Open Sans', sans-serif;
}



/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.uk-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}
/*
 * Add margin if adjacent element
 */
* + .uk-table {
  margin-top: 15px;
}
.uk-table th,
.uk-table td {
  padding: 8px 8px;
}
/*
 * Set alignment
 */
.uk-table th {
  text-align: left;
}
.uk-table td {
  vertical-align: top;
}
.uk-table thead th {
  vertical-align: bottom;
}
/*
 * Caption and footer
 */
.uk-table caption,
.uk-table tfoot {
  font-size: 11px;
  font-style: italic;
}
.uk-table caption {
  text-align: left;
  color: #c4c5c6;
}
/*
 * Active State
 */
.uk-table tbody tr.uk-active {
  background: #f8f9fa;
}
/* Sub-modifier: `uk-table-middle`
 ========================================================================== */
.uk-table-middle,
.uk-table-middle td,
.uk-table-middle th {
  vertical-align: middle !important;
}
/* Modifier: `uk-table-striped`
 ========================================================================== */
.uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(240, 240, 240, 1);
  background-image: none;
}
/* Modifier: `uk-table-condensed`
 ========================================================================== */
.uk-table-condensed td {
  padding: 4px 8px;
}
/* Modifier: `uk-table-hover`
 ========================================================================== */
.uk-table-hover tbody tr:hover {
  background: #f4f4f4;
  background-image: none;
}
.uk-table thead th {
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgba(0, 160, 225, 1);
  line-height: 16px;
  font-weight: 500;
}

.uk-accordion .uk-table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255, 255, 255, 1);
  background-image: none;
}

/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix to make list more robust
 */
.uk-list > li:before,
.uk-list > li:after {
  content: "";
  display: table;
}
.uk-list > li:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.uk-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
/* Modifier: `uk-list-line`
 ========================================================================== */
.uk-list-line > li:nth-child(n+2) {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(230, 230, 230, 1);
}
/* Modifier: `uk-list-striped`
 ========================================================================== */
.uk-list-striped > li {
  padding: 15px 15px;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #f8f9fa;
}
/* Modifier: `uk-list-space`
 ========================================================================== */
.uk-list-space > li:nth-child(n+2) {
  margin-top: 15px;
}


.uk-list > li *{
   -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}


.uk-list > li:hover *, .uk-list > li:active *, .uk-list > li:focus *{
  color: rgba(0, 160, 225, 1);
}


/* ========================================================================
   Component: List
 ========================================================================== */



.tm-check-icon > i {
  font-family: 'Luna';
  font-size: 13px;
}
.tm-check-icon > i:before {
  content: "\e902";
}


.grid-list .uk-panel-hover {
	padding: 20px;
	color: rgba(0, 0, 0, 1);
	overflow: hidden;
	border-radius: 0;
	transition: box-shadow 0.25s ease, background 0.25s ease;
	background: fff;
	box-shadow: none;
	box-shadow:0 2px 5px rgba(0,0,0,0.3);
}

.grid-list .tm-check-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1);
  border: none;
  background: rgba(0, 160, 225, 1);
  transition: background 0.25s ease;
  line-height:30px;
}

.grid-list .uk-panel-hover:hover {
	background: rgba(0, 160, 225, 1);
	box-shadow:0 2px 10px rgba(0,0,0,0.5);
}

.grid-list .uk-panel-hover:hover h3 {
	color: rgba(255, 255, 255, 1);
}

.grid-list .uk-panel:hover .tm-check-icon {
  border-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, 1);
  background-image: none;
  color: rgba(0, 160, 225, 1);
}


/* ========================================================================
   Component: Serach
 ========================================================================== */


span.highlight {
  background-color: rgba(0, 160, 225, 1);
  color: rgba(255, 255, 255, 1);
  padding: 5px;
}


.uk-badge.uk-badge-info {
	background-color: rgba(0, 160, 225, 1);
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
}

/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.uk-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  /* 3 */
  line-height: 40px;
  color: rgba(0, 160, 225, 1);
  font-size: 30px;
  text-align: center;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.uk-slidenav:hover,
.uk-slidenav:focus {

  /* 4 */
  color: rgba(0, 34, 87, 0.7);
}
/* Active */
.uk-slidenav:active {
  color: rgba(0, 34, 87, 0.7);
}


.uk-lightbox-content .uk-slidenav {

  color: rgba(255, 255, 255, 1);
}

.uk-lightbox-content .uk-slidenav:hover,
.uk-lightbox-content .uk-slidenav:focus {

  /* 4 */
  color: rgba(255, 255, 255, 0.7);
}
/* Active */
.uk-lightbox-content .uk-slidenav:active {
  color: rgba(255, 255, 255, 0.7);
}


/* ========================================================================
   Component: Tab -  Extra
 ========================================================================== */

.uk-tab > li > a {  border: none;}

.uk-tab > li.uk-active > a {  border-style: none;}
.uk-tab > li > a:hover,
.uk-tab > li > a:focus,
.uk-tab > li.uk-open > a {
  border-style: none;
}

.uk-tab-center {  margin-bottom: 50px;}





/* ========================================================================
   Component: Tab
 ========================================================================== */
.uk-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(35, 35, 49, 0.1);
}
/*
 * Micro clearfix on the deepest container
 */
.uk-tab:before,
.uk-tab:after {
  content: "";
  display: table;
}
.uk-tab:after {
  clear: both;
}
/*
 * Items
 * 1. Create position context for dropdowns
 */
.uk-tab > li {
  margin-bottom: -5px;
  float: left;
  /* 1 */
  position: relative;
}
.uk-tab > li > a {
  display: block;
  padding: 12px 12px 12px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #FFF;
  text-decoration: none;
  position: relative;
  border: none;
  font-family: "Handelson-Four",Helvetica,Arial,sans-sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
.uk-tab > li > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  border-bottom: 5px solid rgba(0, 0, 0, 1);
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.uk-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.uk-tab > li > a:hover,
.uk-tab > li > a:focus,
.uk-tab > li.uk-open > a {
  border-color: #181822;
  background: rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 1);
  /* 2 */
  outline: none;
}
.uk-tab > li > a:hover::after,
.uk-tab > li > a:focus::after,
.uk-tab > li.uk-open > a::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.uk-tab > li:not(.uk-active) > a:hover,
.uk-tab > li:not(.uk-active) > a:focus,
.uk-tab > li.uk-open:not(.uk-active) > a {
  margin-bottom: 1px;
  padding-bottom: 11px;
}
/* Active */
.uk-tab > li.uk-active > a,
.uk-tab > li[aria-expanded='true'] > a {
  border-color: #edc64a;
  border-bottom-color: transparent;
  background: rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 1);
}
.uk-tab > li.uk-active > a::after,
.uk-tab > li[aria-expanded='true'] > a::after {
  border-width: 5px;
  border-color: rgba(0, 0, 0, 1);
  opacity: 1;
  -webkit-transition: border-width 0.1s, -webkit-transform 0.1s;
  transition: border-width 0.1s, transform 0.1s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Disabled */
.uk-tab > li.uk-disabled > a {
  color: #bbbbc3;
  cursor: text;
}
.uk-tab > li.uk-disabled > a:active {
  color: #bbbbc3;
  -webkit-filter: none;
  filter: none;
}
.uk-tab > li.uk-disabled > a::after,
.uk-tab > li.uk-disabled > a:active::after {
  opacity: 0;
}
.uk-tab > li.uk-disabled > a:hover,
.uk-tab > li.uk-disabled > a:focus,
.uk-tab > li.uk-disabled.uk-active > a {
  background: none;
  border-color: transparent;
}
/* Modifier: 'tab-flip'
 ========================================================================== */
.uk-tab-flip > li {
  float: right;
}
.uk-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}
/* Modifier: 'tab-responsive'
 ========================================================================== */
.uk-tab > li.uk-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}
/*
 * Icon
 */
.uk-tab-responsive > a:before {
  content: "\f0c9\00a0";
  font-family: FontAwesome;
}
/* Modifier: 'tab-center'
 ========================================================================== */
.uk-tab-center {
  border: none;
}

.uk-tab-center::after {
  display: block;
  background-image: url("https://western-systems.net/templates/western-systems/styles/western-systems/images/divider-white.svg");	
  background-position: 50% 0;
  background-size: inherit;
  background-repeat: no-repeat;
  content: "";
  padding-bottom: 5px;
  width: 100%;
}


.uk-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid rgba(35, 35, 49, 0.1);
}
.uk-tab-center:before,
.uk-tab-center:after {
  content: "";
  display: table;
}
.uk-tab-center:after {
  clear: both;
}
/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.uk-tab-center .uk-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}
.uk-tab-center .uk-tab > li {
  position: relative;
  right: -50%;
}
.uk-tab-center .uk-tab > li > a {
  text-align: center;
}
/* Modifier: 'tab-bottom'
 ========================================================================== */
.uk-tab-bottom {
  border-top: 1px solid rgba(35, 35, 49, 0.1);
  border-bottom: none;
}
.uk-tab-bottom > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.uk-tab-bottom > li > a {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom-width: 1px;
  border-top-width: 0;
}
.uk-tab-bottom > li:not(.uk-active) > a:hover,
.uk-tab-bottom > li:not(.uk-active) > a:focus,
.uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 12px;
  padding-top: 11px;
}
.uk-tab-bottom > li.uk-active > a {
  border-top-color: transparent;
  border-bottom-color: #edc64a;
}
/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.uk-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}
.uk-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: -1px;
  border-top: 1px solid rgba(35, 35, 49, 0.1);
  /* 1 */
  z-index: -1;
}
.uk-tab-grid > li:first-child > a {
  margin-left: 5px;
}
.uk-tab-grid > li > a {
  text-align: center;
}
/*
 * If `uk-tab-bottom`
 */
.uk-tab-grid.uk-tab-bottom {
  border-top: none;
}
.uk-tab-grid.uk-tab-bottom:before {
  top: -1px;
  bottom: auto;
}
/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-tab-left,
  .uk-tab-right {
    border-bottom: none;
  }
  .uk-tab-left > li,
  .uk-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .uk-tab-left > li > a,
  .uk-tab-right > li > a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .uk-tab-left > li:nth-child(n+2) > a,
  .uk-tab-right > li:nth-child(n+2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .uk-tab-left > li.uk-active > a,
  .uk-tab-right > li.uk-active > a {
    border-color: #edc64a;
  }
  /*
     * Modifier: 'tab-left'
     */
  .uk-tab-left {
    border-right: 1px solid rgba(35, 35, 49, 0.1);
  }
  .uk-tab-left > li {
    margin-right: -1px;
  }
  .uk-tab-left > li > a {
    border-bottom-width: 1px;
    border-right-width: 0;
  }
  .uk-tab-left > li:not(.uk-active) > a:hover,
  .uk-tab-left > li:not(.uk-active) > a:focus {
    margin-bottom: 0;
    margin-right: 1px;
    padding-bottom: 12px;
    padding-right: 11px;
  }
  .uk-tab-left > li.uk-active > a {
    border-right-color: transparent;
  }
  /*
     * Modifier: 'tab-right'
     */
  .uk-tab-right {
    border-left: 1px solid rgba(35, 35, 49, 0.1);
  }
  .uk-tab-right > li {
    margin-left: -1px;
  }
  .uk-tab-right > li > a {
    border-bottom-width: 1px;
    border-left-width: 0;
  }
  .uk-tab-right > li:not(.uk-active) > a:hover,
  .uk-tab-right > li:not(.uk-active) > a:focus {
    margin-bottom: 0;
    margin-left: 1px;
    padding-bottom: 12px;
    padding-left: 11px;
  }
  .uk-tab-right > li.uk-active > a {
    border-left-color: transparent;
  }
}
.uk-tab > li > a:active {
  color: #232331;
  -webkit-filter: blur(1px);
  filter: blur(1px);
}
.uk-tab > li > a:active::after {
  border-width: 1px;
  border-color: rgba(156, 174, 72, 1);
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.uk-tab-bottom > li > a::after {
  top: 0;
  bottom: auto;
}
.uk-tab > li:not(.uk-active) > a:hover,
.uk-tab > li:not(.uk-active) > a:focus,
.uk-tab > li.uk-open:not(.uk-active) > a {
  margin-bottom: 0;
  padding-bottom: 12px;
}
.uk-tab-bottom > li:not(.uk-active) > a:hover,
.uk-tab-bottom > li:not(.uk-active) > a:focus,
.uk-tab-bottom > li.uk-open:not(.uk-active) > a {
  margin-top: 0;
  padding-top: 12px;
}
.uk-tab-left > li > a::after,
.uk-tab-right > li > a::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  border-right: 1px solid #181822;
  border-bottom: 0;
  webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.uk-tab-right > li > a::after {
  right: auto;
  left: 0;
}
.uk-tab-left > li:not(.uk-active) > a:hover,
.uk-tab-left > li:not(.uk-active) > a:focus {
  margin-right: 0;
  padding-right: 12px;
}
.uk-tab-right > li:not(.uk-active) > a:hover,
.uk-tab-right > li:not(.uk-active) > a:focus {
  margin-left: 0;
  padding-left: 12px;
}





.uk-tab-responsive .uk-nav-dropdown > li > a {  letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 18px;
    color: rgba(0, 0, 0, 1);}


.uk-tab-responsive .uk-nav-dropdown > li > a:hover,
.uk-tab-responsive .uk-nav-dropdown > li > a:focus {
  background: rgba(0, 0, 0, 0);
  color: rgba(201, 1, 60, 1);
  text-decoration: none;
}


.uk-tab-responsive .uk-nav-dropdown > li.uk-active > a {   color: rgba(201, 1, 60, 1);}


.uk-tab-responsive .uk-dropdown {  background: rgba(245, 245, 245, 1);
   padding: 10px 20px;
   border: none;}


.uk-tab-responsive .uk-dropdown .uk-nav > li > a {  padding: 5px 0;}


.uk-tab-responsive .uk-dropdown-small .uk-nav {  margin: 0;}

.uk-tab-responsive .uk-nav-dropdown > li.uk-active > a,
.uk-tab-responsive .uk-nav-dropdown > li[aria-expanded='true'] > a {   box-shadow: none;}


.uk-tab-responsive .uk-nav-dropdown > li > a:hover,
.uk-tab-responsive .uk-nav-dropdown > li > a:focus {
  background: rgba(0, 0, 0, 0);
  color: rgba(201, 1, 60, 1);
  /* 2 */
  outline: none;
  box-shadow: none;
}



/* ========================================================================
   Widget Slideshow 
 ========================================================================== */

.uk-slideshow .content  {
	background: rgba(0, 160, 225, 0.9);
	padding: 25px;
	display: table;
}

.uk-slideshow .uk-overlay-panel  {
	padding: 0;
}


@media (max-width: 479px) {
.uk-slideshow .content  {
	display: none;
}}


/* ========================================================================
   Widget Slideshow Multiply
 ========================================================================== */



.multiply .uk-cover-background {
  background-color: rgba(0, 160, 225, 1);
  background-blend-mode: multiply;
}

.multiply .uk-overlay-background {
    background-color: rgba(0, 160, 225, 0.6);
}


.multiply .uk-overlay-panel h1 {
  margin-bottom: 0;
}


.multiply .uk-overlay-panel  {
	padding: 25px 25px 0 25px;
}

.multiply .uk-overlay-bottom {
	top: 0;
}


@media (max-width: 767px) {
.multiply .uk-heading-large {
  font-size: 1.5em;
  line-height: 1.3em;
}

/*
.multiply .uk-overlay-panel.uk-flex-middle {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
*/

}

.uk-slideshow .uk-panel i {
   font-size: 40px;
}


.uk-slideshow .z-index {
   z-index: 1001;
   position: relative
}

/* ========================================================================
   Slideshow Animation
 ========================================================================== */


canvas {
  position: absolute;
  width: 100%; 
  height: 100%;
  top: 0; 
  right: 0; 
  bottom: 0; 
  left: 0;
}

/* ========================================================================
   Animation
 ========================================================================== */
 
.uk-animation-1 {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}


/* ========================================================================
   Widget Parallax Window
 ========================================================================== */

#parallax-window > [class*="uk-background-"] {
    height: 40vh;
}

#parallax-window > .uk-background-cover {
    background-size: cover !important;
}




@media (min-width: 480px) {
#parallax-window > [class*="uk-background-"] {
    height: 50vh;
}
#parallax-window > .uk-background-fixed {
    background-attachment: fixed;
}
#parallax-window > .uk-background-norepeat {
    background-repeat: no-repeat;
}
#parallax-window > .uk-background-center-center {
    background-position: 50% 50%;
}
#parallax-window > .uk-background-cover {
    background-size: cover !important;
}
.uk-background-contain, .uk-background-cover {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}}



/* ========================================================================
   Widget Grid - Parallax
 ========================================================================== */

.leistungen img {
max-width:40%;
height: inherit;
margin: 0 auto;
display: inline-block;
}

img.leistung1, img.leistung4 {
float: none;
}

img.leistung1 {
margin-bottom: -10%;
}

img.leistung1.first {
margin-bottom: 0;
}

img.leistung2 {
float: left;
margin-left: 9%;
}

img.leistung3 {
float: right;
margin-right: 9%;
}

img.leistung4 {
margin-top: -10%;
}


@media (max-width: 767px) {
.leistungen img {
max-width:20%;
}

img.leistung1 {
margin-bottom: -4%;
}

img.leistung2 {
float: left;
margin-left: 29%;
}

img.leistung3 {
float: right;
margin-right: 29%;
}

img.leistung4 {
margin-top: -4%;
}	
}



@media (max-width: 479px) {
.leistungen img {
max-width:40%;
}

img.leistung1, img.leistung4 {
float: none;
}

img.leistung1 {
margin-bottom: -10%;
}

img.leistung1.first {
margin-bottom: 0;
}

img.leistung2 {
float: left;
margin-left: 9%;
}

img.leistung3 {
float: right;
margin-right: 9%;
}

img.leistung4 {
margin-top: -10%;
}

}		




/* ========================================================================
   Widget Accordion 
 ========================================================================== */

.uk-accordion-title::before, .uk-accordion-title.uk-active::before {  content: none;}


.uk-accordion-title {  background: rgba(230, 230, 230, 1) none repeat scroll 0 0;
  color: rgba(0, 0, 0, 1);  border: none;  cursor: pointer;  margin-bottom: 0;  margin-top: 10px;  padding: 20px 15px;  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  border-radius: 0;
  position: relative;
  font-weight:300;
  text-transform: none;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.03em;
 }



.uk-accordion-title:first-child {  margin-top: 0;}

.uk-accordion-title:hover, .uk-accordion-title.uk-active {
  background: rgba(0, 160, 225, 1) none repeat scroll 0 0;
  color: rgba(255, 255, 255, 1);
}

.uk-accordion-title:after {   font-family: FontAwesome;
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0fe";
  font-size: 14px;
  float:right;
  color: rgba(0, 0, 0, 1);
  position: absolute;
   right: 15px;
   top: 20px;}


.uk-accordion-title.uk-active:after, .uk-accordion-title:hover:after {
  color: rgba(255, 255, 255, 1);}

.uk-accordion-title.uk-active:after {
  content: "\f146";}

.uk-accordion-content {  padding: 15px;
  background: rgba(245, 245, 245, 1) none repeat scroll 0 0;}

.uk-accordion-content p:last-child {  margin-bottom: 0;}

.uk-accordion-content ul {  margin: 0;}


@media (min-width: 768px) {
.uk-accordion-content {  padding: 25px;}

.uk-accordion-title {  padding: 20px 25px;}

.uk-accordion-title:after {
   right: 25px;
   top: 20px;}	

}


/* Modifier: `uk-panel-hover`
 ========================================================================== */
.uk-panel-hover {
  padding: 20px;
  color: rgba(0, 0, 0, 1);
  overflow: hidden;
  border-radius: 0;
  transition: box-shadow 0.25s ease, background 0.25s ease;
  background: rgba(255, 255, 255, 1);
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.uk-panel-hover:hover {
  color: rgba(0, 0, 0, 1);
  background-image: none;
  box-shadow: 2px 26px 30px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
}
.uk-panel-hover .uk-panel-badge {
  top: 10px;
  right: 10px;
}
.uk-panel-hover > .uk-panel-teaser {
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
}

.uk-panel-hover img {
	padding: 25px;
}



/* ========================================================================
   Modal
 ========================================================================== */


.uk-modal-header {  margin-bottom: 25px;}

/* ========================================================================
   Button
 ========================================================================== */

.uk-button {  -moz-border-bottom-colors: none;  -moz-border-left-colors: none;  -moz-border-right-colors: none;  -moz-border-top-colors: none;  background-color: rgba(0, 160, 225, 0.8);  border: none;  box-shadow: none;  color: rgba(255, 255, 255, 1);  cursor: pointer;  display: inline-block;  font-size: 18px;  line-height: inherit;  margin-bottom: 0;  text-align: center;  text-shadow: none;  vertical-align: middle;
  border-radius: 0;
  padding: 10px 20px;
  font-family: 'Open Sans', sans-serif;}

.uk-panel-box-secondary .uk-button,
.uk-panel-box-secondary .uk-button-primary {
  border-color: rgba(0, 0, 0, 0);
  background-color: rgba(0, 160, 225, 1);
  box-shadow:0 2px 2px rgba(0,0,0,0.3);
  color: rgba(255, 255, 255, 1);
    -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  
}


.uk-panel-box-secondary .uk-button:hover,
.uk-panel-box-secondary .uk-button:focus,
.uk-panel-box-secondary .uk-button-primary:hover,
.uk-panel-box-secondary .uk-button-primary:focus,
.uk-panel-box-secondary .uk-button:active,
.uk-panel-box-secondary .uk-button-primary:active {
  background-color: rgba(0, 160, 225, 1);
  box-shadow:0 2px 10px rgba(0,0,0,0.5);
  color: rgba(255, 255, 255, 1);
}



.uk-button:hover,
.uk-button:focus {
   background-color: rgba(0, 160, 230, 1);
   color: rgba(255, 255, 255, 1);
}
/* Active */
.uk-button:active,
.uk-button.uk-active {
   background-color: rgba(0, 160, 230, 1);
   color: rgba(255, 255, 255, 1);
}





/* ========================================================================
   Formular
 ========================================================================== */
 
 fieldset {
	border: 0 none;
	margin: 0;
	padding: 0;
}
 
 
/*
 * Placeholder
 */
.uk-form :-ms-input-placeholder, form :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}
.uk-form ::-moz-placeholder, form ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.uk-form ::-webkit-input-placeholder, .form ::-webkit-input-placeholder  {
  color: rgba(0, 0, 0, 0.3);
}
.uk-form :disabled:-ms-input-placeholder, form :disabled:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
}
.uk-form :disabled::-moz-placeholder, form :disabled::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.uk-form :disabled::-webkit-input-placeholder, form :disabled::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}


uk-form :-ms-input-placeholder {
    text-transform: none;
letter-spacing: 0;
}
.uk-form ::-moz-placeholder {
    text-transform: none;
letter-spacing: 0;
}
.uk-form ::-webkit-input-placeholder {
    text-transform: none;
letter-spacing: 0;
}
.uk-form select {
    text-transform: none;
letter-spacing: 0;
}


.uk-form select:focus,
.uk-form textarea:focus,
.uk-form input:not([type]):focus,
.uk-form input[type="text"]:focus,
.uk-form input[type="password"]:focus,
.uk-form input[type="datetime"]:focus,
.uk-form input[type="datetime-local"]:focus,
.uk-form input[type="date"]:focus,
.uk-form input[type="month"]:focus,
.uk-form input[type="time"]:focus,
.uk-form input[type="week"]:focus,
.uk-form input[type="number"]:focus,
.uk-form input[type="email"]:focus,
.uk-form input[type="url"]:focus,
.uk-form input[type="search"]:focus,
.uk-form input[type="tel"]:focus,
.uk-form input[type="color"]:focus {
  outline: 0;
  background: none repeat scroll 0 0 rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
  border: solid 1px rgba(0, 68, 124, 1);
}



.uk-form select, .uk-form textarea, .uk-form input:not([type]), .uk-form input[type="text"], .uk-form input[type="password"], .uk-form input[type="datetime"], .uk-form input[type="datetime-local"], .uk-form input[type="date"], .uk-form input[type="month"], .uk-form input[type="time"], .uk-form input[type="week"], .uk-form input[type="number"], .uk-form input[type="email"], .uk-form input[type="url"], .uk-form input[type="search"], .uk-form input[type="tel"], .uk-form input[type="color"] {  border: none;
  background: none repeat scroll 0 0 rgba(240, 240, 240, 1);
  color: rgba(0, 0, 0, 1);
  padding: 10px 15px;
  height: inherit;
  font-size: 18px;
  line-height: inherit;
  font-family: 'Fira Sans', sans-sans-serif;
  font-weight: 400;
  border-radius: 0;
  width: 100%;}



.uk-form input[type="radio"], .uk-form input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 0;
}

.uk-form-danger {
  border: 1px solid rgba(255, 205, 205, 1) !important;
  background: rgba(255, 205, 205, 0.3) !important;
  color: rgba(211, 52, 75, 1) !important;
  background-image: none !important;
}

label.uk-form-danger {
  background: none !important;
  border: none !important;
}

strong.formRequired {
	font-weight: 300;
    font-family: 'Ubuntu', Helvetica, Arial, sans-sans-serif;
	margin-left: 5px;
}



.uk-form-label {
	font-size: 11px;
	font-family: 'Ubuntu', Helvetica, Arial, sans-sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.uk-form-stacked .uk-form-label {
	display: block;
	margin-bottom: 0;
	font-weight: 500;
}

 .uk-form label > span.note {
  font-size: 13px;
  line-height: 1.2em;
  font-family: 'Ubuntu', Helvetica, Arial, sans-sans-serif;
  font-weight: 300;
  color: rgba(150, 150, 150, 1);
} 

 .uk-form label.uk-form-danger > span.note {
  color: rgba(211, 52, 75, 1) !important;
} 

.uk-form-row + .uk-form-row {
	margin-top: 25px;
}



@media (max-width: 767px) {

.uk-form.newsletter .uk-form-width-large {
  width: 100%;
  display: block;
}

}


@media (min-width: 768px) {
	
	
	
.uk-form.newsletter .uk-form-width-large {
  width: 350px;
  display: inline-block;
}


}	


/* ========================================================================
   Social Media
 ========================================================================== */


.tm-block-social .uk-icon {  font-size: 35px;
   -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
  color: rgba(0, 160, 225, 1);} 

.tm-block-social a.uk-icon:not(:first-child) {
  padding-left: 25px;} 

.tm-block-social a.uk-icon:hover, .tm-block-social a.uk-icon:focus{  color: rgba(0, 128, 196, 1);} 


/* ========================================================================
   Newsletteranmeldung
 ========================================================================== */


.uk-form.newsletter input.uk-form-width-large {
 width: 100%;     
}

.uk-form.newsletter > div:nth-child(n+2) {
 margin-top: 25px;     
}

.uk-form.newsletter i {
 display: none;  
 color: rgba(0, 160, 225, 1); 
 font-size: 50px
}

@media (min-width: 768px) {
		
.uk-form.newsletter {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;    
}

.uk-form.newsletter input.uk-form-width-large {
 width: 400px;     
}

.uk-form.newsletter i {
 display: block;     
}

.uk-form.newsletter > div + div {
 margin-top: 0;     
}

.uk-form.newsletter > div:not(.first){
 margin-left: 50px;     
}



}


/* ========================================================================
   Footer
 ========================================================================== */
 
 .tm-footer,  .tm-footer a {
  color: rgba(255, 255, 255, 1);}

@media (max-width: 959px) {


.tm-footer.uk-block-small {
  padding-bottom: 75px;
}


}

 .tm-footer {  background-color: rgba(0, 160, 225, 1);}

 .tm-footer > div > div > div:nth-child(n+2) {  margin-left: 50px;}


 .tm-footer .uk-subnav > * > * {
  display: inline-block;
  color: rgba(255, 255, 255, 1);
  font-size: 0.9em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

 .tm-footer .uk-subnav {  margin: 0;
    -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;}




 .tm-footer .uk-subnav > * {  flex: 0 0 auto;  margin-top: 0;  padding-left: 15px;  position: relative;}


/*
 * Hover
 * 1. Apply hover style also to focus state
 */
 .tm-footer .uk-subnav > * > :hover,
 .tm-footer .uk-subnav > * > :focus,
 .tm-footer .uk-subnav > .uk-active > * {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}


 .tm-footer .uk-subnav > li:first-child {  padding: 0;}



 .tm-footer .uk-subnav > *::before {  content: "";  display: inline-block;  height: 18px;  vertical-align: middle;}


 .tm-footer .uk-subnav > *:nth-child(n+2)::before {  border-left: 1px solid rgba(255, 255, 255, 1);  margin-right: 15px;}


.tm-footer .uk-panel {
	margin-top: 25px;
}

.tm-footer .uk-panel + .uk-panel {
	margin-top: 25px;
}


@media (min-width: 1220px) {

.tm-footer .uk-panel {
	margin-top: 50px;
}

.tm-footer .uk-panel + .uk-panel {
	margin-top: 50px;
}
}
/* ========================================================================
   To Top Scroller
 ========================================================================== */

.totop-scroller:after {
  display: block;
  content: "\f077";
  font-family: 'FontAwesome';
  font-size: 14px;
  line-height: 25px;
  text-align: center;
}

.totop-scroller {
	display: block;
	position: relative;
	color: #fff;
	z-index: 1000;
}


.totop-scroller:hover,
.totop-scroller:focus {
  color: rgba(255, 255, 255, 0.8);
}


	
/* ========================================================================
   Component: Animation Custom
 ========================================================================== */

[class*='uk-animation-custom-'] {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}



.uk-animation-custom-scale-down {
  -webkit-animation-name: uk-fade-scale-custom-18;
  animation-name: uk-fade-scale-custom-18;
}

@-webkit-keyframes uk-fade-scale-custom-18 {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes uk-fade-scale-custom-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* ========================================================================
   Responsive Videos
 ========================================================================== */


.embed-container {
position: relative;
padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
padding-top: 0px;
 width: 100%;
  height: auto;
}

.embed-container iframe {
	border: none;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	margin: 9px 0px 0px -2px;
}

/* ratio 4x3 */
.embed-container.ratio4x3 {
  padding-bottom: 75%;
}


.wissenswertes .embed-container {
padding-bottom: 0
}

.wissenswertes .embed-container iframe {
	height: 1200vw;
}


@media (min-width: 768px) {

.wissenswertes .embed-container iframe {
	height: 160rem;
}
}


/* ========================================================================
   Search
 ========================================================================== */


.tm-search {  bottom: inherit;  position: relative;  right: inherit;}

/* ========================================================================
   Animation
 ========================================================================== */
 
.uk-animation-1 {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}




/* ========================================================================
   Widget Parallax Window
 ========================================================================== */

#parallax-window > [class*="uk-background-"] {
    height: 40vh;
}

#parallax-window > .uk-background-cover {
    background-size: cover !important;
}




@media (min-width: 480px) {
#parallax-window > [class*="uk-background-"] {
    height: 50vh;
}
#parallax-window > .uk-background-fixed {
    background-attachment: fixed;
}
#parallax-window > .uk-background-norepeat {
    background-repeat: no-repeat;
}
#parallax-window > .uk-background-center-center {
    background-position: 50% 50%;
}
#parallax-window > .uk-background-cover {
    background-size: cover !important;
}
.uk-background-contain, .uk-background-cover {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}}






/* ========================================================================
   Weiterführende Links Grid List
 ========================================================================== */


.uk-list .tags{
  color: rgba(0, 160, 225, 1);
  font-weight: 300;
   font-family: 'Open Sans', sans-serif;
   line-height: 25px;
   font-size:15px;
   letter-spacing: 0.04em;
   text-transform: uppercase;
}


/* ========================================================================
   Widget Gallery Team
 ========================================================================== */

.team .uk-overlay-icon:before {
	content: "\f003";
	font-size: 80px;
	width:80px;
	height: 80px;
	color: #ffffff;
	margin-top: -40px;
margin-left: -40px;
}


/* ========================================================================
   Widget Map
 ========================================================================== */

.map .gm-style .gm-style-iw, .map .gm-style .gm-style-iw h3  {
  font-size: 18px;
  line-height: 28px;
}

.map .gm-style .gm-style-iw h3 {
  margin-bottom: 15px;
}

.map .gm-style .gm-style-iw h3 + div.uk-margin {
  margin:0;
}


/* ========================================================================
   Widget Grid - Icon Teaser
 ========================================================================== */

.icon-teaser .uk-panel-box div.uk-margin  {
  margin-bottom: 25px;
}

.icon-teaser .uk-panel-box div.uk-margin  {
  margin-bottom: 25px;
}


.uk-panel-box-secondary-hover:hover > * {
	color: rgba(0, 160, 225, 1);}

.icon-teaser .uk-panel-box img {
	height: 100px;}


@media (min-width: 1220px) {
.icon-teaser .uk-panel-box {
	padding: 50px;
}
}

/* ========================================================================
   Cookie - Datenschutzerklärung
 ========================================================================== */
 
.cc_container .cc_btn {
 background-color:rgba(0, 160, 225, 1) !important;
 color:#fff !important;
}

.cc_container .cc_btn:hover,.cc_container .cc_btn:active {
 background-color:#fff !important;
 color:#000 !important;
 }
 
 .cc_container a,.cc_container a:visited {
 color:rgba(0, 160, 225, 1) !important;
}
.cc_container a:hover,.cc_container a:active {
 color:rgba(0, 144, 54, 0.8) !important;
}





/* ========================================================================
   Editor Styles
 ========================================================================== */
@media (max-width: 767px) {

.wf_caption {
    max-width: 100% !important;
    padding-bottom: 15px;
}

.image-left, .image-right {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 15px;
}
}


@media (min-width: 768px) {
.image-left {
  float: left;
  padding: 10px 25px 25px 0;
}
.image-right {
  float: right;
  padding: 10px 0 25px 25px;
}
}

.wf_caption > span {
	font-size: 0.8em;
	line-height: 1.4em;
	color: rgba(100, 100, 100, 1);
	font-weight: 300;
    font-style: italic;
}