@font-face {
    font-family: 'BaiJamjuree';
    font-style: normal;
    font-weight: 200;
    src: url("../font/BaiJamjuree-ExtraLight.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: oblique;
    font-weight: 200;
    src: url("../font/BaiJamjuree-ExtraLightItalic.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: normal;
    font-weight: 300;
    src: url("../font/BaiJamjuree-Light.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: oblique;
    font-weight: 300;
    src: url("../font/BaiJamjuree-LightItalic.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: normal;
    font-weight: 400;
    src: url("../font/BaiJamjuree-Regular.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: oblique;
    font-weight: 400;
    src: url("../font/BaiJamjuree-Italic.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: normal;
    font-weight: 500;
    src: url("../font/BaiJamjuree-Medium.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: oblique;
    font-weight: 500;
    src: url("../font/BaiJamjuree-MediumItalic.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: normal;
    font-weight: 600;
    src: url("../font/BaiJamjuree-SemiBold.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: oblique;
    font-weight: 600;
    src: url("../font/BaiJamjuree-SemiBoldItalic.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: normal;
    font-weight: 700;
    src: url("../font/BaiJamjuree-Bold.ttf") format('truetype');
}
@font-face {
    font-family: 'BaiJamjuree';
    font-style: oblique;
    font-weight: 700;
    src: url("../font/BaiJamjuree-BoldItalic.ttf") format('truetype');
}

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
*:focus,*:active,*:hover,*{
  outline: none !important;
}
:root {
  --main-bg-color: #fff;
  --main-txt-color: #666;
  
  --sub-bg-color: #fff;
  --sub-txt-color: #999; 
  
  --main-padding: 15px; 
}
/**************************************** Animation ****************************************/
@keyframes pulse {
    0% {box-shadow: 0 0 0 0 rgba(255,255,255, 0.8);}
   70% {box-shadow: 0 0 0 10px rgba(255,255,255, 0);}
  100% {box-shadow: 0 0 0 0 rgba(255,255,255, 0);}
}
/**************************************** Start ****************************************/
body{
  overflow-y: scroll;
  line-height: 1.4;
  font-family: 'BaiJamjuree';
  font-size: 16px;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4;
  transition: transform .2s;
  -webkit-transition: -webkit-transform .2s;
}
body.ps-active {
  -webkit-transform: translateX(260px);
  -ms-transform: translateX(260px);
  transform: translateX(260px);
}
body.ps-active-right {
  -webkit-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  transform: translateX(-260px);
}
img, svg{
  max-width:100%;
  height:auto;
}
table{
  width:100%;
}
a{
  color: #444;
  text-decoration: none;
  opacity: 1;
  transition: all .2s ease;
}
a:hover {
  opacity: .9;
}
p{
  margin: 1em auto;
}
ul{
  margin-left: 17px;
}
iframe{
  width: 100%;
  min-height:; 350px;
}
video {
  width: 100%;
}
.button {
  appearance: none;
  text-align: center;
  display: inline-block;
  padding: 10px;
  background: #222;
  color: #fff;
  line-height: 1;
  font-size: 0.9em;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0px;
  margin-top: 1.33em;
}
hr{
  width: 100px;
  margin-bottom: 2.83em;
  border: 2px solid;
}
.ce-bodytext ol {
    margin-left: 17px;
}
/**************************************** Scroll Slider Div ***************************************/
.mouse {
  max-width: 25px;
  width: 100%;
  height: auto;
}
.scroll {
  animation-name: scroll;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.650, -0.550, 0.250, 1.500);
  animation-iteration-count: infinite;
  transform-origin: 50% 20.5px;
  will-change: transform;
}
.scroll-link {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@keyframes scroll {
  0%, 20% {transform: translateY(0) scaleY(1);}
  10% {opacity: 1;}
  100% {transform: translateY(36px) scaleY(2); opacity: 0.01;}
}
/**************************************** Header ****************************************/
h1,h2,h3,h4,h5,h6 {
  display: block;
  margin-left: 0;
  margin-right: 0;
  font-weight: 400;
  line-height:35px;
}
h1 { 
  font-size: 2em;
  font-size: 25px;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}
h2 {
  font-size: 3.0em;
  margin-top: 1.66em;
  margin-bottom: 0.83em;
}
h3 { 
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
}
h4 { 
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
h5 { 
  font-size: .83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
h6 { 
  font-size: .67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}
/**************************************** Inner ****************************************/
.left{
  float: left;
}
.right{
  float: right;
}
.clr{
  clear: both;
  display: block;
  content: '';
}
.grid{
  opacity: 0;
}
.cover{
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.inner,.articleInner{
  width: 1200px;
  margin: auto;
}
.articleInner .articleInner{
  width: auto;
  padding:0;
}
.frame-layout-10 .articleInner,
.noInner .articleInner {
  padding: 0;
  margin: 0;
  width: 100%;
}
/* Flex mittig */
.flex{ 
  display: flex;
  justify-content: space-between;
}
/**************************************** Back BTN ****************************************/
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 1%;
  text-decoration: none;
  color: #fff;
  border: 0px solid #fff;
  font-size: 30px;
  border-radius: 50%;
  font-weight: 700;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  display: none;
  z-index:99;
  background: linear-gradient(312deg, rgba(68,57,85,1) 10%, rgba(0,88,54,1) 47%, rgba(0,40,66,1) 83%);
}
.back-to-top:hover {    
  background: linear-gradient(312deg, rgba(68,57,85,0.8) 10%, rgba(0,88,54,0.8) 47%, rgba(0,40,66,0.8) 83%);
}
/* close BTN Start */
.close:before{
  content:' ';
}
#closebtn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}
#closebtn span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #333;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#closebtn span:nth-child(1) {top: 0px;}
#closebtn span:nth-child(2) {top: 9px;}
#closebtn span:nth-child(3) {top: 18px;}
#closebtn:hover span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
#closebtn:hover span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#closebtn:hover span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
/**************************************** Google Maps ****************************************/
#map {
  width: 100%;
  height: 400px;
  background-color: grey;
}
.gm-style-iw {
  font-family: 'Open Sans';
  font-size: 14px !important;
  width: 450px !important;
  top: 15px !important;
  left: 0 !important;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(178, 178, 178, 0.6);
  border: 0px solid rgba(72, 181, 233, 0.6);
  border-radius: 0; 
  padding: 0 25px;
}
/**************************************** bgImage ****************************************/
.bgImage{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/**************************************** Cols ****************************************/
/*50-50*/
.twoCols .fifty{
  width: 49%;
}
.twoCols .fifty.col11{
  margin-right: 2%;
}
/*30-70*/
.twoCols .thirty{
  width:30%;
}
.twoCols .thirty.col11{
  margin-right: 2%;
}
.twoCols .seventy{
  width:68%;
}
/*30-30-30*/
.threeCols .thirty{
  width:32%;
}
.threeCols .thirty.col12{
  margin-left: 2%;
  margin-right: 2%;
}
/*25-25-25-25*/
.fourCols .twentyfive{
  width: 23.5%;
}
.fourCols .twentyfive.col11{
  margin-right: 2%;
}
.fourCols .twentyfive.col13{
  margin-left: 2%;
  margin-right: 2%;
}
/*20-20-20-20-20*/
.fiveCols .twenty{
  width: 18.5%;
}
.fiveCols .twenty.col11{
  margin-right: 2%;
}
.fiveCols .twenty.col13{
  margin-left: 2%;
  margin-right: 2%;
}
/**************************************** Panel ****************************************/
.panel {
  position: fixed;
  top: 0;
  width: 220px;
  height: 100%;
  padding: 20px;
  background-color: #333;
  color: #fff;
  box-shadow: inset 0 0 5px 5px #222;
}
#right-panel .inner, 
#right-panel .articleInner,
#left-panel .inner,
#left-panel .articleInner{
  width:100%;
  margin:0;
  padding:0;
}
#left-panel {
  left: 0;
  transform: translateX(-260px);
}
#right-panel {
  right: 0;
  transform: translateX(260px);
}
/**************************************** Trigger ****************************************/
.triggerMainEl:last-of-type .articleInner{
  padding-bottom: 2.5em;
}
.triggerWrap{
  background: #eee;
}
.triggerer{
  background: var(--sub-txt-color);
  color:var(--main-bg-color);
  padding: 0.5em 1em;
  cursor: pointer;
  position: relative;
}
.triggerer:after{
  content: '+';
  display: block;
  position: absolute;
  top: 0.4em;
  right: 1em;
  z-index: 5;
  font-size: 2em;
  line-height: 1;
  transition:all .2s ease;
}
.triggerMainEl.open .triggerer:after {
  transform: rotate(45deg);
  transform-origin:center center;
  color:var(--sub-bg-color);
}
.triggerEl{
  display: none;
}
.triggerElInner{
  padding:1em;
  color:var(--main-bg-color);
}
.triggerMainEl.open .triggerEl{
  display: block;
}
.triggerMainEl.open .triggerer,
.triggerMainEl.open .triggerElInner{
  transition:all .2s ease;  
  background: var(--main-bg-color);
  color:var(--sub-txt-color);
}
/**************************************** Flip ****************************************/
.card {
  position: relative;
  transform-style: preserve-3d;
  min-height: 400px;
  perspective: 800px;
  transition: 0.5s;
  z-index: 1;
}
.card::before {
  content: "\00BB";
  margin-right: 6px;
  position: relative;
  z-index: 2;
}
.card.flip .card-front {
  transform: rotateX(-180deg);
}
.card.flip .card-back {
  transform: rotateX(0deg);
}
.card-front {
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform: rotateX(0deg);
  transition: 0.5s;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-back {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform: rotateX(180deg);
  transition: 0.5s;
  background: blue;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-back .content{
  text-align: center;
}
/**************************************** Cookie Notify ****************************************/
#notify { 
  outline: 1px solid #333; 
  text-align:right; 
  border-bottom:1px solid #333;
  background:red; 
  position:fixed;
  bottom:0px; 
  z-index:9999; 
  width:100%; 
  font-size:12px; 
  padding:10px; 
  text-align: center;
}
#notify a {
  color:#fff; 
  text-decoration:none;
}
#notify a:hover {
  text-decoration:underline;
}
#notifyCloser {
  position: absolute;
  top: 0;
  bottom: 0;
  right:0;
  content: "\274c";
  font-size: 2em;
  color: #fff;
  cursor:pointer;
  background:#f2f2f2;
  width:2em;
  opacity: 1;
}
#notifyCloser:after {
  content: '\d7';
}
/* Allgemeines Grid Layout */
.gridTitle h2{
  font-size: 1.8em;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  padding: 0% 3% 0% 1%;
}