/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 10-mrt-2016, 9:25:59
    Author     : Mees Verberne
*/
.defaultFont {
  font-size: 14px;
  font-weight: 500;
}
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.title-description-block {
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
}
.title-description-block h1 {
  vertical-align: top;
  width: 69%;
  display: inline-block;
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.1;
}
.title-description-block h1 b,
.title-description-block h1 strong {
  font-size: 68px;
  font-weight: 800;
}
.title-description-block .description {
  vertical-align: top;
  font-size: 20px;
  font-weight: 300;
  margin: 0 auto;
  width: 31%;
  display: inline-block;
  right: 0px;
  position: relative;
}
.title-description-block .description .buttons {
  margin-top: 20px;
}
.title-description-block .description .buttons .btn {
  cursor: pointer;
}
.fixedPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixedPopup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixedPopup.active .contentContainer .iframeContainer {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixedPopup .close {
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 30px;
  left: 50%;
  margin-top: -50px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  font-size: 26px;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixedPopup .close:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixedPopup .contentContainer {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.fixedPopup .contentContainer .iframeContainer {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixedPopup .contentContainer .iframeContainer iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.fixedPopup .background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(50, 64, 81, 0.8);
  z-index: -1;
}
@media all and (max-width: 1180px) {
  .title-description-block .contentwrapper {
    padding-left: 30px;
    width: calc(100% - 60px);
  }
}
@media all and (max-width: 920px) {
  .title-description-block .contentwrapper {
    width: 100%;
    padding: 0 20px;
  }
  .title-description-block .contentwrapper h1 {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    font-size: 28px;
  }
  .title-description-block .contentwrapper h1 b,
  .title-description-block .contentwrapper h1 strong {
    font-size: 44px;
  }
  .title-description-block .contentwrapper .description {
    width: 100%;
  }
}
/*# sourceMappingURL=title_description_block.css.map */