@charset "utf-8";
/* CSS Document *

/*-------------------------------------------------------------------------------------*/
/*GENERAL -----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

* {
  margin: 0;
}

html,
body {
  padding: 0px;
  margin: 0px;
  height: 100%;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #252525;
  background: #ffffff;
  line-height: 24px;
}

body.popup {
  background-color: white;
  background-image: none;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  text-decoration: none;
  background: none;
}

img {
  max-width: 100%;
}

.wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto;
  transition: all 0.2s;
}

.wrapper.clicked {
  margin-top: 50px;
}

@media (max-width: 768px) {
    .push {height: 65px;}
}

h1,
h2,
h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  margin: 0 0 30px 0;
}

h2 {
  font-size: 46px;
  margin: 0 0 20px 0;
}

h3 {
  font-size: 32px;
  margin: 0 0 10px 0;
}

ul {
  margin: 0;
  padding:0;
  list-style-type: none;
}

ul li {
  position:relative;
  padding: 0 0 0 15px;
}

ul li::before {
  content: "\f105";
  font-family: FontAwesome;
  position:absolute;
  left:0;
  top:0;
}

.btn,
.btn-primary, 
.smartyButtonLink .smartyButton {
  line-height: 33px;
  padding: 0 55px 0 15px;
  border: 2px solid #fff;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#smartyButton_printThis {padding-right: 15px;}
#smartyButton_printThis::after {display: none;}

.smartyButtonLink .smartyButton .smartyButtonText {
  padding: 0;
  line-height:inherit;
   font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.btn-secondary {
  background: transparent;
}

.btn:hover,
.btn-primary:hover, 
.smartyButtonLink .smartyButton:hover {
  background: #fff;
  border-color:#fff;
}

.btn-secondary:hover {
  color: #fff;
  border: 2px solid transparent;
}

.btn::after,
.btn-primary::after, 
.smartyButtonLink .smartyButton::after {
  content: "";
  background-image: url(/images/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 13px;
  top: 8px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.btn-left::after {content: ""; background-image: url(/images/arrow-white.svg); transform: rotate(90deg); width: 18px; height: 18px; display: inline-block; background-repeat: no-repeat; background-size: contain; -webkit-transform: rotate(90deg);}
.btn-right::after {content: ""; background-image: url(/images/arrow-white.svg); transform: rotate(-90deg); width: 18px; height: 18px; display: inline-block; background-repeat: no-repeat; background-size: contain; -webkit-transform: rotate(-90deg);}

.btn:hover::after,
.btn-primary:hover::after,
.btn-secondary::after, 
.smartyButtonLink .smartyButton:hover::after {
    content: '';
    background-image: url(/images/arrow.svg);
}

.btn-secondary:hover::after {
    background-image: url(/images/arrow-white.svg);
}

.btn-cta {padding: 0; width: 37px;}
.btn-cta::after {display: none;}
.buttonWrapper select {min-width: 235px !important;}

@media all and (-ms-high-contrast:none) {
    select.smartyButton {padding: 5px !important;}
}

/*-------------------------------------------------------------------------------------*/
/*HEADER ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
header .header-top {
  padding-top: 70px;
  padding-bottom: 15px;
  position: relative;
}

header .logo {
  height: 100px;
  max-width: 460px;
  display: block;
  margin: 0 auto;
}

header .logo img {
  max-height:100%;
}

header .search-block {
    position: absolute;
    display: flex;
    right: 30px;
    top: 23px;
}

header .search-block .btn + .btn {
    margin-left: 6px;
}

header .contact-block {
  position: absolute;
  left: 30px;
  top: 23px;
}

header .contact-block .btn {
  margin-right: 6px;
  float: left;
}

header .contact-block .btn:nth-child(2) {
  border:2px solid #000;
  color:#000;
}

header .contact-block .btn:nth-child(2):hover {
  background:#000;
  border: 2px solid transparent;
  color:#fff;
}

header .contact-block .btn::after {transform:none; -webkit-transform:none;}

header .contact-block .btn:nth-child(1)::after {background-image: url(/images/work-at-icon.png); width: 41px; height: 30px; right:4px; top: 4px;}
header .contact-block .btn:nth-child(2)::after {background-image: url(/images/lock-icon.png);}
header .contact-block .btn:nth-child(1):hover::after {background-image: url(/images/work-at-icon-white.png);}
header .contact-block .btn:nth-child(2):hover::after {background-image: url(/images/lock-icon-white.png);}


/*-------------------------------------------------------------------------------------*/
/*SEARCH ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

header .search-toggle {
  width: 34px;
  height: 34px;
  background: url(/images/search-icon.svg) center center no-repeat;
  background-size:contain;
  cursor: pointer;
  z-index: 999;
  text-align: center;
  float: right;
  margin-left: 4px;
}

header .search-toggle:hover {
  background-image: url(/images/search-icon-black.svg);
}

header .search-toggle.clicked {
  background-image: url(/images/cross.svg);
}

header .search-toggle.clicked:hover {
  background-image: url(/images/cross-black.svg);
}

.search {
  display: block;
  left: 0;
  width: 100%;
  z-index: 501;
  height: 50px;
  margin-top: -50px;
  transition: all 0.2s;
}

.search.clicked {
  margin-top: 0;
}

.search input::placeholder {
  color: #fff;
}

.search input {
  width: 100%;
  height: 50px;
  color: #fff;
  padding: 0 30px;
  line-height: 50px;
  float: left;
  border: none;
}

.search .searchOnsiteSubmitWrapper a {
  position: relative;
  width: 50px;
  height: 50px;
  float: left;
  line-height: 50px;
  margin-left: -50px;
}

.search .searchOnsiteSubmitWrapper a::after {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

/*-------------------------------------------------------------------------------------*/
/*SLIDESHOW ---------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

.slideshow, .slideshow-container {
  width: 100%;
  height: 600px;
  position: relative;
  overflow:hidden;
}

.slideshow .slideshow-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
}

.slideshow .slideshow-overlay h5 {font-size: 16px; font-weight: 400;}

@media (min-width: 767px) {
    .slideshow .slideshow-overlay { padding-bottom: 100px; }
    .slideshow .slideshow-overlay .btn + .btn { margin-left: 6px; }
}

.slideshow .slideshow-overlay .btn {
    text-align: left; 
    border: none;
}

@media (max-width: 767px) {
    .slideshow .slideshow-overlay .btn{
        margin: 6px 15px;
        padding: 6px 30px 6px 6px;
        display: block;
        white-space: normal;
    }
    .slideshow .slideshow-overlay h4,
    .slideshow .slideshow-overlay h5 {margin: 0;}
}

.slideshow .owl-item .slideshow-image, .slideshow .content-image {
  width: 100%;
  height: 600px;
  background-position: center center;
  background-size: cover;
  border-radius: 0% 0% 200vh 190vh / 0% 0% 20vh 20vh;
  overflow: hidden;
}

.slideshow .owl-item .slideshow-image::before , .slideshow .content-image::before {
  content: "";
  height: 50%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-linear-gradient(top,#000 0,transparent 100%);
  background: linear-gradient(to bottom,#000 0,transparent 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000', GradientType=0 );
}

.slideshow .slogan {
  width: 626px;
  height: 286px;
  background: url(/images/honeycombs.png);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 501;
  color: #ffffff;
  font-size: 38px;
  font-family: "Caveat", cursive;
  text-shadow: 2px 1px 0px rgba(150, 150, 150, 1);
  pointer-events: none;
}

.slideshow .slogan .slogan-text {
  padding: 198px 0 0 15px;
}

.slideshow .slogan .slogan-text-alt {
  padding: 20px 0 0 262px;
}

/*-------------------------------------------------------------------------------------*/
/*MENU --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

.navbar-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    min-height: 65px;
    z-index:999;
    transition: all .1s;
}

.navbar-main.sticky {
  position:fixed;
  top:0;
}

.navbar-main.clicked {
  top: 0;
}

.navbar-main .container {
  position: relative;
}

#nav-bar {
  height: 50px;
  padding: 0;
}

.mainMenu {
  width:100%;
  text-align:center;
}

ul.cssMenu {
  cursor: default;
  text-align: left;
  padding: 0 0 0 0;
  list-style: none;
  list-style-type: none;
  display:inline-block;
  margin: 0;
}

ul.cssMenu li {
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 7px 20px;
  text-align: left;
  position: relative;
  color: #fff;
  float: left;
  cursor: pointer;
  height: auto;
  font-size: 22px;
  z-index: 999;
  line-height: 40px;
  font-family: "Roboto Condensed", sans-serif;
}

@media (min-width: 1200px) {
    ul.cssMenu li {
        font-size: 26px;
    }
}

ul.cssMenu li::before {
  content: none;
}

ul.cssMenu li:last-child {
  margin-right: 0;
}

ul.cssMenu li.hasKids > a {
  padding-right: 10px;
}

ul.cssMenu li a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding:0 2px;
}

ul.cssMenu li:hover > a,
ul.cssMenu li.pressed > a {
  color: #fff;
  text-decoration: none;
}

.noTouch ul.cssMenu li:hover > ul,
ul.cssMenu li.pressed > ul {
  left: 1%;
  margin-left: -1px;
  left: 1px;
}

ul.cssMenu li:hover > a,
ul.cssMenu li.pressed > a,
ul.cssMenu li.selected > a {border-bottom:2px solid #fff;}


.noTouch ul.cssMenu li:hover > ul li:hover > ul,
.noTouch ul.cssMenu li:hover > ul li.pressed > ul,
ul.cssMenu li.pressed > ul li:hover > ul,
ul.cssMenu li.pressed > ul li.pressed > ul {
  display: block;
  left: 260px;
  padding: 0;
  margin: 0;
}

ul.cssMenu ul {
  width: 260px;
  padding: 0;
  margin: 47px 0 0 0;
  cursor: default;
  text-align: left;
  position: absolute;
  z-index: 999;
  left: -999em;
  top: 0;
}

ul.cssMenu ul li {
  width: 260px;
  text-align: left;
  min-height: 18px;
  height: auto !important;
  line-height: 33px;
  padding: 5px 20px;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  background:#fff;
  color:#000;
}

ul.cssMenu ul li.hasKids::after {
  font-family: FontAwesome;
  right: 15px;
  content: "\f054";
  font-size: 10px;
  top: 5px;
  position: absolute;
}

ul.cssMenu ul li.hasKids:hover::after {
  color: #fff;
}

ul.cssMenu ul li a {
  color: #000;
  display: block;
  border:none;
}

.noTouch ul.cssMenu ul li:hover > a,
ul.cssMenu ul li.pressed > a {
  color: #fff;
  border: none;
}

ul.cssMenu ul li.selected a {
  border: none;
}

ul.cssMenu ul ul {
  display: none;
  position: absolute;
  top: 0px;
}

/*-------------------------------------------------------------------------------------*/
/*MOBILE MENU -------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
  .navbar-header {
    background:#fff;
    min-height: 65px;
  }

  ul.cssMenu li.hasKids::after {
    content: none;
  }

  .navbar-main {
    position: fixed;
    top: 0;
  }
  main.clicked .navbar-main {
    margin-top: 50px;
  }
  .toggle-sm {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        border: none;
        color: #ffffff;
        z-index: 1001;
        position: absolute;
        top: 13px;
        right: 60px;
        margin-top: 0;
        padding: 5px;
        text-align: center;
        cursor: pointer;
  }
 
  .toggle-sm::after {
      content: '\f002';
      font-family: 'FontAwesome';
      color: #fff;
      display: inline-block;
  }

  .navbar-main .container {
    padding: 0;
  }

  .container > .navbar-header {
    padding: 0;
    margin: 0;
  }

  .container > .navbar-collapse {
    margin: 0;
  }

  .sticky > .navbar-header {
    padding: 10px 0 10px 0;
  }

  .navbar-toggle {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: none;
    color: #ffffff;
    z-index: 1001;
    position:absolute;
    top:13px;
    right:0;
    margin-top: 0;
    padding: 9px 9px;
  }

  .navbar-toggle .icon-bar {
    display: none;
  }

  .navbar-toggle .closeMenu {
    width: 24px;
    height: 31px;
    position: relative;
  }

  .navbar-toggle .closeMenu::before {
    content: "\f00d";
    font-family: "FontAwesome";
    font-size: 19px;
    position: absolute;
    left: 1px;
    top: -3px;
    line-height: 24px;
  }

  .navbar-toggle.collapsed .closeMenu {
    display: none;
  }

  .navbar-toggle.collapsed .icon-bar {
    background: #ffffff;
    width: 17px;
    display: block;
  }

  #nav-bar {
    margin-top: 0;
    position: absolute;
    top: 64px;
    z-index: 10000;
    width: 100%;
    border: none;
    padding: 0;
  }

  #nav-bar.navbar-collapse.in {
    overflow-x: visible;
    overflow-y: auto;
    max-height: 366px;
    height: auto;
  }

  #nav-bar #mainMenu {
    height: auto;
    margin: 0;
    width: 100%;
    z-index: 10000;
    overflow: hidden;
    display: block;
  }

  #nav-bar #mainMenu::after {
    content: "";
    display: table;
    clear: both;
  }

  #nav-bar ul.cssMenu {
    margin-top: 0px;
    width: 100%;
    height: auto;
  }

  #nav-bar ul.cssMenu li {
    display: block;
    float: none;
    width: 100%;
    height: auto;
    min-height: 29px;
    line-height: 29px;
    border: none;
    margin: 0;
    padding: 0;
  }

  #nav-bar ul.cssMenu li.hasKids::after {
    right: 15px;
    content: "\f105";
    left: auto;
    top: 3px;
    color: #fff;
    font-family: "FontAwesome";
    position: absolute;
    font-size:22px;
  }

  #nav-bar ul.cssMenu li.pressed.hasKids::after {
    content: "\f107";
  }

  #nav-bar ul.cssMenu li a {
    color: #ffffff;
    text-align: left;
    display: block;
    padding: 5px 10px 5px 12px;
    font-weight: normal;
    border-bottom: none !important;
  }

  #nav-bar ul.cssMenu li:hover > ul,
  #nav-bar ul.cssMenu li.pressed > ul {
    left: 0px;
    position: relative;
  }

  #nav-bar ul.cssMenu li:hover > ul li:last-child,
  #nav-bar ul.cssMenu li.pressed > ul li:last-child {
    border-bottom: 0;
  }

  #nav-bar ul.cssMenu li:hover > ul li:hover > ul,
  #nav-bar ul.cssMenu li:hover > ul li.pressed > ul,
  #nav-bar ul.cssMenu li.pressed > ul li:hover > ul,
  #nav-bar ul.cssMenu li.pressed > ul li.pressed > ul {
    left: auto;
    display: block;
    margin-top: 0px;
    left: 0;
    top: 0;
  }

  #nav-bar ul.cssMenu li ul {
    margin: 0;
    width: 100%;
  }

  #nav-bar ul.cssMenu li ul li {
    width: 100%;
    padding: 0;
  }

  #nav-bar ul.cssMenu li ul li a {
    width: auto;
    padding: 5px 0px 5px 25px;
  }

  #nav-bar ul.cssMenu li ul li ul {
    left: auto;
    display: none;
    position: relative;
  }

  #nav-bar ul.cssMenu li ul li ul li a {
    padding-left: 35px;
  }
}

/*-------------------------------------------------------------------------------------*/
/*CONTENT -----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

.contentWrapper {
  margin: 0;
}

.intro {
  position: relative;
  z-index: 501;
  padding: 50px 0 50px 0;
}

.intro .content-home {color: #fff;}

.intro .content-home .contentWrapper,
.intro .content-home .contentWrapper h2, 
.intro .content-home .contentWrapper a {
  color:#fff !important;
}

.intro-content .content-home {
  font-size:18px;
}

.intro .contentWrapper {
  margin-bottom: 40px;
}

.intro h1, .intro #contentCmsBody h1,
.intro #contentCmsBody div {
  color: #fff;
}

.intro #contentCmsBody div {
  font-size:18px;
}

@media (min-width: 1200px) {
  .intro .buttons .btn {
    margin-right: 15px;
    border-width: 3px;
    line-height: 43px;
    font-size: 24px;
  }

  .intro .buttons .btn::after {
    width: 22px;
    height: 22px;
    right: 13px;
    top: 10px;
  }
}


.intro .buttons .btn-video::after {
  background-image: url(/images/video-icon-white.png);
  width: 31px;
  height: 24px;
  top: 10px;
  transform: none;
}

.intro .buttons .btn-video:hover::after {
  background-image: url(/images/video-icon.png);
}

.intro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  border-top-left-radius: 0px;
}

.modules .row {
  margin:0;
}

/* CONTENT PAGE */
.intro-content::before {
  right:inherit;
  left:0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.content-content {
  background:#eaeaea;
  padding-top:90px;
  padding-bottom:90px;
}

.content-content h1, .content-content h6 {
  display:none;
} 

/*-------------------------------------------------------------------------------------*/
/*RELATED -----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
.item-related {
  position: relative;
}

.item-related-odd {
  background: #eaeaea;
}

.item-related .related-content {
  width: 50%;
  float: left;
  padding: 60px 80px 60px 0;
  min-height: 385px;
}

.item-related .image {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-image: url('/images/placeholder-related.jpg');
}

.item-related .related-intro {
  height: 95px;
  overflow: hidden;
  margin: 0 0 30px 0;
}

.item-related-even .related-content {
  float: right;
  padding: 60px 0 60px 80px;
}

.item-related-even .image {
  left: 0;
  right: inherit;
}

.item-related.item-related-even .btn-primary {padding: 6px 12px; outline: none;}
.item-related.item-related-even .btn-primary::after {display: none;}

.item-related .owl-prev .btn:hover .btn-left::after,
.item-related .owl-next .btn:hover .btn-right::after {background-image: url(/images/arrow.svg); }

.talent-block {
  width:50%;
  float:left;
  height: 450px;
}

.talent-block .related-content {
  width: 50%;
  float: left;
  padding: 70px 30px 5px 30px;
}

.talent-block .image {
  width: 50%;
  float: right;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: none!important;
  max-height: none!important;
  background-image: url(/images/placeholder-news.png);
}

.talent-block h3 {
  color: #fff;
  font-size: 32px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  line-height: 32px;
  display: block;
  text-decoration: none;
}

.talent-block .related-intro {
  float: left;
  color: #fff;
  margin: 20px 0;
  max-height: 125px;
  overflow: hidden;
}

/*-------------------------------------------------------------------------------------*/
/*TESTIMONIALS ------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

.owl-nav .btn {width: 50px; height: 50px; display: flex; justify-content: center; align-items: center;}

.owl-theme .owl-controls .owl-nav div {position: absolute; display: flex;}
.owl-theme .owl-controls .owl-nav .owl-prev {left: 10px; top: 50%;}
.owl-theme .owl-controls .owl-nav .owl-next {right: 10px; top: 50%;}

.testimonials {
    padding: 60px 0;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
  content:"";
  background:url(/images/logo-icon.svg);
  background-repeat:no-repeat;
  width:585px;
  height:395px;
  background-size:contain;
  position:absolute;
  left:-40px;
  bottom:-40px;
  opacity:0.08;
}
	
.testimonials .testimonial-image {
	border-radius: 50%;
	height: auto;
	padding-top: 100%;
	position:relative;
	overflow: hidden;
	border:2px solid #fff;
	box-shadow: 1px 0 5px 0 rgba(50,50,50,.2);
}

.testimonials .testimonial-image img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	display: block;
	height: auto;
	width: 100%;
}
	
.testimonials h2 {
	margin:0;
  text-align:center;
  color:#fff;
}
	
.testimonials h3 {
	font-size:50px;
  font-weight:300;
  font-family: 'Caveat', serif;
  color:#fff;
}

.testimonials .testimonial-text {
  margin-bottom:5px;
  text-align:center;
  font-size:18px;
  font-weight:500;
  font-family: 'Roboto', sans-serif;
}

.testimonials .testimonial-text.text-with-image {
  padding-right:16.66666667%;
}

@media (max-width: 991px) {
  .testimonials .testimonial-text.text-with-image {
    padding-right:25%;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-text.text-with-image {
    padding-right:0;
  }
}

/*-------------------------------------------------------------------------------------*/
/*NEWS --------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
.news-onsite {
  width:50%;
  float:left;
}

.newsOS::after {
  content:"";
  display:table;
  clear:both;
}

.newsOS .newsBlokTitle, .newsOS .date {
  display:none;
}

.newsOS .newsContentItem {
  width:50%;
  float:left;
  height:450px;
}

.news-onsite .newsOS .newsContentItem {
  float:none;
  width:100%;
}

.newsOS .newsItemImage {
  width:50%;
  float:left;
  height:100%;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  max-width:none!important;
  max-height:none!important;
  background-image: url(/images/placeholder-news.png);
}

.newsOS .newsContentItem:nth-child(3) .newsItemImage, .newsOS .newsContentItem:nth-child(4) .newsItemImage, .news-onsite .newsOS .newsContentItem .newsItemImage {
  float:right;
}

.newsOS .dateTitle {
  width:50%;
  float:left;
  padding:70px 30px 5px 30px;
}

.newsOS .newsTitle a {
  color:#fff;
  font-size:32px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  line-height: 32px;
  display:block;
  text-decoration:none;
}

.newsOS .newsTeaser {
  width:50%;
  float:left;
  padding: 20px 30px 28px 30px;
  color:#fff;
}

.newsOS a.readMore {
  line-height: 33px;
  padding: 0 55px 0 15px;
  border: 2px solid #fff;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display:inline-block;
  margin-left:30px;
  text-decoration:none;
}

.newsOS a.readMore:hover {
  background: #fff;
}

.newsOS a.readMore::after {
  content: "";
  background-image: url(/images/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 13px;
  top: 8px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.newsOS a.readMore:hover::after {
  background-image: url(/images/arrow.svg);
}

.newsOS .allNews {
  display:none;
}


/*-------------------------------------------------------------------------------------*/
/*ALBUMS ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
.album-onsite {
  float:left; 
  width:50%;
  height:450px;
}

.album-onsite .albumThumbImage {
  width:50%;
  float:left;
  height:225px;
  background-size: cover;
  background-position: center center;
  background-repeat:no-repeat;
  cursor:pointer;
  position:relative;
}

.album-onsite .albumThumbImage:hover::before {
  content:"";
  width:100%;
  height:100%;
  background:rgba(0,0,0,.50);
  position:absolute;
  left:0;
  top:0;
  pointer-events:none;
}

.album-onsite .owl-item:nth-child(2) .albumThumbImage, .album-onsite .owl-item:nth-child(3) .albumThumbImage {
  width:25%;
}

/*-------------------------------------------------------------------------------------*/
/*CALENDAR ----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

.calendar-onsite {
  float:left;
  width:50%;
  height:450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-onsite .calendar-content {
  max-width:700px;
  padding-left: 30px;
  padding-right: 30px;
}

.miniMonthWrapper {
  height:auto;
  margin:0;
  width:50%;
  float:left;
  padding:22px 30px 22px 0;
  min-height:0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background:#fff;
}

.miniMonthWrapper .miniMonthHeader, .miniMonthWrapper .miniMonthHeader .calendarTitle {
  display:none;
}

.miniMonthWrapper .topCalendar {
  margin-bottom:9px;
  width:100%;
  position:relative;
}

.miniMonthWrapper .topCalendar::after {
  clear:both;
  content: "";
  display: table;
}

.miniMonthWrapper .topCalendar .monthName {
  width:100%;
  font-weight:500;
  font-size:19px;
  font-family: 'Roboto', sans-serif;
}

.miniMonthWrapper .topCalendar .prevMonth, .miniMonthWrapper .topCalendar .nextMonth {
  width:9px;
  cursor:pointer;
  position:absolute;
  top:0;
  left:0;
  font-size:0;
}

.miniMonthWrapper .topCalendar .prevMonth::after, .miniMonthWrapper .topCalendar .nextMonth::after {
  content: "\f104";
  font-family: FontAwesome;
  position: absolute;
  left: 2px;
  top: 0;
  color: #fff;
  font-size: 24px;
}

.miniMonthWrapper .topCalendar .nextMonth::after {
  content: "\f105";
}

.miniMonthWrapper .topCalendar .nextMonth {
  left:inherit;
  right:0;
}

.miniMonthWrapper .miniCalendar{
  width:100%;
  margin: 0 auto;
  margin-top:0;
}

.miniMonthWrapper .miniCalendar .miniCalendarContent::after {
  display:table;
  content:"";
  clear:both;
}

.miniMonthWrapper .miniCalendar .headerRowMiniCalendar {
  height:25px;
  color: #ffffff;
  font-size:16px;
}

.miniMonthWrapper .miniCalendar .miniCalendarContent .dayHeaderItemMini {
  width:auto;
  height:100%;
  text-align:center;
  font-size:15px;
  float:none;
  display:block;
  font-weight:300;
}

.miniMonthWrapper .miniCalendar .miniCalendarContent .dayHeaderItemMini.dayBusy, .miniMonthWrapper .miniCalendar .miniCalendarContent .otherMonth .dayHeaderItemMini:hover {
  color: #fff;
}

.miniMonthWrapper .miniCalendar .miniCalendarContent .dayHeaderItemMini:hover {
  text-decoration:none;
  color:#fff;
}

.miniMonthWrapper .miniCalendar .headerRowMiniCalendar .miniHeaderItem {
  width: 14.28%;
  height: 31px;
  float: left;
  text-align: center;
  color: #58585a;
  font-size: 15px;
  padding: 2px 3px;
  line-height: 26px;
  font-weight:400;
}

.miniMonthWrapper .miniCalendar .miniCalendarContent .dayWrapper {
  width: 14.28%;
  height: 31px;
  float: left;
  text-align: center;
  display: inline;
  color: #58585a;
  padding: 2px 3px;
  line-height: 26px;
}

.miniMonthWrapper .miniCalendar .miniCalendarContent .dayWrapper:hover a {
  text-decoration:none;
}


.miniMonthWrapper .miniCalendar .miniCalendarContent .currentDay .dayHeaderItemMini {
  color:#fff;
  border:none;
}

.calendarOS {
  padding:22px 0 22px 30px;
  width:50%;
  float:left;
  min-height:0;
  position:relative;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background:#fff;
}

.calendar::after {
  display:table;
  content:"";
  clear:both;
}

.calendarOS .calendarOSHeader {
  text-align:left;
  padding:0 0 14px 0;
  font-weight:500;
  font-size:19px;
  font-family: 'Roboto', sans-serif;
}

.calendarOS .calendarItem {
  display:table;
  margin-bottom:11px;
  width: 100%;
  table-layout: fixed;
  font-size:15px;
}

.calendarOS .calendarItem:last-child {
  margin-bottom:16px;
}

.calendarOS .calendarItemDate {
  width:60px;
  min-width:60px;
  height:20px;
  float:left;
  margin-right:10px;
  line-height:20px;
  display: table-cell;
  vertical-align: top;
  font-size:15px;
  font-weight:300;
}

.calendarOS .calendarItemDate .dateDay {
  display:inline;
  padding-right:4px;
}

.calendarOS .calendarItemDate .dateMonth {
  display:inline;
}

.calendarOS .calendarItemTitle {
  overflow:hidden;
  text-overflow:ellipsis;
  min-height:20px;
  max-height:40px;
  line-height:20px;
  margin-top:8px;
  text-decoration:none;
  display: table-cell;
  white-space: nowrap;
  vertical-align: top;
  width: 100%;
  padding-left: 70px;
  text-align:left;
  font-weight:300;
  font-size:15px;
}

.calendarOS .calendarItemTitle:hover {
  color:#58585a;
  text-decoration:underline;
}

.calendarOS .calendarItemDivider {
  width:100%;
  clear:both;
}

.calendarOverview {   
  display: none;
}


/* OVERRIDES */
.calendarWrapper .itemDataTitle, .calendarWrapper .itemDataContent {
  display:inline;
}

.calendarWrapper .buttonWrapper .button {
  float:none;
}

.calendarNavigation {display: flex !important;}
.calendarNavigation .smartyButton {padding: 0 15px; height: 37px;}
.calendarNavigation .smartyButton::after {display: none;}
.calendarNavigation .smartyButton input {height: 32px;}

/*-------------------------------------------------------------------------------------*/
/*TWITTER -----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
.twitter-onsite {
  float:left; 
  width:50%;
  height:450px;
  text-align:center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twitter-onsite .twitter-title {
  font-weight:700;
  position:relative;
}

.twitter-onsite .twitter-title::before {
  position:absolute;
  font-family: FontAwesome;
  left: calc(50% - 23px);
  content: "\f099";
  font-size: 50px;
  top: -47px;
  position: absolute;
}

.twitter-onsite .twitter-tag {
  font-style:italic;
  margin-bottom:30px;
}

.twitter-onsite .tweet_list .tweet_avatar, .twitter-onsite .tweet_list .tweet_time, .twitter-onsite .twitterFooter {
  display:none;
}

.tweet_list li {
  padding:0 15px;
  max-width:400px;
  width:100%;
  margin:0 auto;
}

.tweet_list li::before {
  content:none;
}



/*-------------------------------------------------------------------------------------*/
/*FOOTER ------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

footer {min-height: 189px; color: #fff; font-size: 15px;}
footer h4 {font-weight:500; font-size:18px; font-family: 'Roboto', sans-serif;}

.footer-top a {color: #fff; text-decoration: none;}
.footer-top a:hover {color: #fff; text-decoration: underline;}

footer .footer-top {background: #000000; padding: 30px 0; position:relative;}
footer .mail, footer .tel {
	position: relative;
	padding-left: 30px;
	word-break: break-all;
	display: block;
}

footer .mail::before, footer .tel::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 18px;
	height: 16px;
	background-size: contain;
	background-repeat: no-repeat;
}

footer .mail::before {background-image:url('/images/mail-icon.svg');}
footer .tel::before {background-image:url('/images/phone-icon.svg');}

footer .footer-top::after {
	content:"";
	background: url(/images/talent.svg) no-repeat;
	width:260px;
	height:174px;
	bottom:-30px;
	right:55px;
	position:absolute;
	opacity: 0.25;
}

footer .contact-info {position: relative;}
footer .contact-info::before {
	content: '';
	position: absolute;
	width: 114px;
	height: 76px;
	background: url(/images/logo-icon.svg) no-repeat;
	left: -130px;
	top: 11px;
	opacity: 0.25;
}

footer .footer-menu ul {margin: 39px 0 0 0;}
footer .form-group-select {position: relative; width: 100%; max-width: 320px;}

footer .form-control {
	width: 100%;
	height: 37px;
	line-height: 33px;
	border: none;
	font-size: 15px;
	color: #fff;
	font-weight: 400;
	-webkit-appearance: none;
	padding: 0 20px;
	background: transparent;
	-moz-appearance: none;
	border-radius: 8px;
	border:2px solid #fff;
	position: relative;
  z-index: 10;
}

footer .form-control option {color: #000;}

footer .form-group-select::after {
	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	right: 0;
	top: 0;
	height: 37px;
	line-height: 37px;
	width: 40px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	pointer-events: none;
}

footer select::-ms-expand {display: none;}

footer .footer-bottom {
	height: 50px;
	line-height: 50px;
	background: #fff;
	text-align: center;
}

/*-------------------------------------------------------------------------------------*/
/*MEDIA QUERIES -----------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/

@media (max-width: 1199px) {
  /* HEADER */
  header .logo {margin:0 0 0 30px;}

  /* INTRO */
  .intro .buttons .btn:first-child::after {top:5px;}

  /* NEWS */
  .newsOS .dateTitle {padding-top:30px;}
  .newsOS .newsTitle {height: 97px; overflow: hidden;}
  .newsOS .newsTeaser {height: 197px; overflow: hidden; padding: 0 30px; margin-top: 20px; margin-bottom: 20px;}

  /* TALENT */
  .talent-block .related-content {padding-top:30px;}
  .talent-block .related-intro {height: 197px; overflow:hidden;}

  /* FOOTER */
  footer .contact-info::before {content:none;}
}

@media (max-width: 991px) {
  /* HEADER */
  /* header .contact-block {top:17px;} */
  header .header-top {padding: 70px 0 15px;}

  /* INTRO */
  .intro::before {width:100%; border-radius:0;}
  .intro .content-home {padding-left:15px;}
  .intro-content .content-home {padding-left:15px; padding-right:15px;}

  /* RELATED */
  .item-related .related-content {padding: 60px 20px 60px 0px;}
  .item-related-even .related-content {padding: 60px 0 60px 20px;}
  
  /* NEWS */
  .newsOS .newsItemImage {width:100%; height:50%;}
  .newsOS .dateTitle {width:100%; padding-top: 20px;}
  .newsOS .newsTitle {height:64px; width:100%;}
  .newsOS .newsTeaser {width:100%; height: 53px; margin-top: 10px; margin-bottom: 10px;}

  /* TALENT */
  .talent-block .image {width:100%; height:50%;}
  .talent-block .related-content {width:100%; padding-top: 20px;}
  .talent-block h3 {height:64px; width:100%; overflow:hidden;}
  .talent-block .related-intro {width:100%; height: 53px; margin-top: 10px; margin-bottom: 10px;}


  /* CALENDAR */
  .calendar-onsite h3 {display:none;}
  .calendarOS, .miniMonthWrapper {width:100%; float:none;}
  .miniMonthWrapper {padding-top:0; min-height:auto;}
  .calendarOS {padding:0; min-height:auto; }
  .calendarOS .calendarOSContent {height:auto;}
  .calendarOS .calendarItem:nth-child(4), .calendarOS .calendarItem:nth-child(5), .calendarOS .calendarItem:nth-child(6) {display:none;}

  /* FOOTER */
  footer .contact-info {margin-bottom:10px;}
  footer .footer-menu ul {margin:0;}
}

@media (max-width: 767px) {
  /* HEADER */
  .slideshow, .slideshow-container, .slideshow .owl-item .slideshow-image, .slideshow .content-image {height: 250px;}
  .slideshow .owl-stage-outer {width:100%;}
  .navbar-header .logo {width: 220px; padding: 10px 0 10px 15px;}
  .slideshow .owl-item .slideshow-image, .slideshow .content-image {border-radius:inherit; width: 100%; margin-left: 0; margin-right: 0;}
  .search {position: fixed;}

  /* CONTENT */
  .intro {margin-top:0; padding:30px 0; z-index:1;}
  .intro #contentCmsBody h1 {font-size:30px; text-align:center;}
  .intro .buttons {text-align:center;}
  .intro .buttons .btn {margin-bottom:10px;}
  .content-content {padding-top:30px; padding-bottom:30px;}

  /* RELATED */
  .item-related .image {width:100%; height:200px;}
  .item-related .related-content {width:100%; padding: 220px 20px 20px 20px;}
  .item-related .related-intro {height:auto; max-height:95px;}

  /* TESTIMONIALS */
  .testimonials {padding:30px 0;}
  .testimonials h3 {font-size:30px;}
  .testimonials .testimonial-image {width: 200px; margin: 20px auto 20px auto; padding-top: 200px;}
  .testimonials::before {content:none;}

  /* MODULES */
  .newsOS .newsContentItem, .news-onsite, .album-onsite, .twitter-onsite, .calendar-onsite, .talent-block {width:100%; float:none;}
  .newsOS .newsTitle, .newsOS div.readMore {text-align:center;}
  .newsOS a.readMore {margin-left:0;}
  .album-onsite .albumThumbImage:hover::before {content:none;}
  .twitter-onsite {height: auto; padding: 80px 0 20px 0;}
  .miniMonthWrapper {padding-right:0;}
  .calendar-onsite h3 {display:block; text-align:center;}
  .item-related .related-content {text-align:center;}
  .item-related .related-intro {text-align:left;}
 
}

@media (min-width: 1300px) {
    /* HEADER */
    /* header .contact-block {top:17px;} */
    header .header-top {padding-top: 22px;}
}