@font-face {
    font-family: 'Montserrat';
    src: url('/Public/Fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('/Public/Fonts/montserrat-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;

}




@font-face {
    font-family: 'Montserrat';
    src: url('/Public/Fonts/montserrat-medium-webfont.woff2') format('woff2'),
         url('/Public/Fonts/montserrat-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;

}




@font-face {
    font-family: 'Montserrat';
    src: url('/Public/Fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('/Public/Fonts/montserrat-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;

}




@font-face {
    font-family: 'Montserrat';
    src: url('/Public/Fonts/montserrat-semibold-webfont.woff2') format('woff2'),
         url('/Public/Fonts/montserrat-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;

}

/*@font-face {*/
/*    font-family: 'eurostile-extended';*/
/*    src: url('/Public/Fonts/eurostile_extended_regular-webfont.woff2') format('woff2'),*/
/*         url('/Public/Fonts/eurostile_extended_regular-webfont.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/**/
/*}*/




@font-face {
font-family:"eurostile-extended";
src:url("/Public/Fonts/eurostile-extended-400.woff2") format("woff2"),
url("/Public/Fonts/eurostile-extended-400.woff") format("woff"),
url("/Public/Fonts/eurostile-extended-400.opentype") format("opentype");
font-display:auto;font-style:normal;font-weight:400;font-stretch:normal;
}

@font-face {
font-family:"eurostile-extended";
src:url("/Public/Fonts/eurostile-extended-900.woff2") format("woff2"),
url("/Public/Fonts/eurostile-extended-900.woff") format("woff"),
url("/Public/Fonts/eurostile-extended-900.opentype") format("opentype");
font-display:auto;font-style:normal;font-weight:900;font-stretch:normal;
}

@font-face {
font-family:"eurostile-extended";
src:url("/Public/Fonts/eurostile-extended-500.woff2") format("woff2"),
url("/Public/Fonts/eurostile-extended-500.woff") format("woff"),
url("/Public/Fonts/eurostile-extended-500.opentype") format("opentype");
font-display:auto;font-style:normal;font-weight:500;font-stretch:normal;
}

.tk-eurostile { font-family: "eurostile",sans-serif; }
.tk-eurostile-extended { font-family: "eurostile-extended",sans-serif; }


.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}
.bts-popup {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.bts-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.bts-popup-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 14em auto;
  background: #e5e3df;
  border-radius: none;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.bts-popup-container img {
  padding: 35px 0px 35px 0px;
}
.bts-popup-container p {
  color: white;
  padding: 10px 40px;
}
.bts-popup-container .bts-popup-button {
  background-color: transparent;
  color: #5b5041;
  font-size: 20px;
  line-height: 1.3;
  padding: 12px 20px;
  border-radius: 0;
  margin: 10px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #5b5041;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.bts-popup-container a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.bts-popup-container .bts-popup-close {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 30px;
  height: 30px;
}
.bts-popup-container .bts-popup-close::before,
.bts-popup-container .bts-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 16px;
  height: 3px;
  background-color: #5b5041;
}
.bts-popup-container .bts-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.bts-popup-container .bts-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 6px;
  top: 12px;
}
.is-visible .bts-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .bts-popup-container {
    margin: 15em auto;
  }
}

// BLIM DEZ 2022

.wrapper.homepage{}
.wrapper.homepage section.swiper{}
.wrapper.homepage section.swiper .container{
  max-width: none !important;
}
.wrapper.homepage section.swiper .container .item{
}
.wrapper.homepage section.swiper .container .item .inner{
}

.accordion .item.open{
  background: #f3f2f0;
}
.accordion .item .toggler{
  border-radius: 0 0 0 26px;
}
.accordion .item .toggler span{
  display: block;
  font-weight: normal;
  font-size: 18px;
  color: #d1a54c;
}

@media (min-width: 768px){
  .wrapper.homepage section.swiper .container .item .inner .image-box{
    left: 17.5%;
  }
  .wrapper.homepage section.swiper .container .item .inner .image-box img{
    top: 10%;
    height: 76%;
  }
  .wrapper.homepage section.swiper .container .item .inner .text-box{
    padding-left: 30px;
  }

  .textarea .text-box {
    max-width: none;
    width: 100%;
  }

  .tt_address_list .vcard .gender{
    display: none;
  }

  .tt_address_list .vcard{
    background: #fff;
    transition: background 200ms ease-out;
  }
  .tt_address_list .vcard:hover{
    background: #f3f2f0;
  }

  .tt_address_list .vcard img.img-thumbnail{
    transition: transform 300ms ease-out;
    transform: rotate(0);
  }
  .tt_address_list .vcard:hover img.img-thumbnail{
    transform: rotate(4.5deg) scale(1.1);
  }
}


.slider .slick-slide{
  border-bottom-left-radius: 60px;
  overflow: hidden;
}


  .custom-btn{
    background-color: #5b5041;
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
    padding: 12px 20px;
    border-radius: 0;
    margin: 10px 0 0;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #5b5041;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .custom-btn:hover{
    color: #5b5041;
    text-decoration: none;
    background-color: transparent;
  }


.tt_address_list h3 span{
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}
.tx-digenial-kd-familyarticles .nav-images ul li.active{
  /*border: 1px solid #7e7261;*/
  background-color: #f3f2f0;
}

.tx-digenial-kd-familyarticles .nav-images ul li.active a{
  text-decoration: underline;
  font-weight: bold;
  font-size: 17px;
}

.tx-digenial-kd-familyarticles .nav-images ul li a>div:before{
  padding-top: 80%;
}

.tt_address_list .mobile-headline.mobile-headline-closed:before{
  content: "+";
  font-family: 'Icons', sans-serif;
  font-weight: 400;
  text-transform: none;
  font-style: normal;
  right: 8px;
  width: 45px;
  display: block;
  position: absolute;
  display: block;
  font-size: 20px;
  line-height: 45px;
  text-align: center;
  top: 0;

}

@media (min-width: 768px){
  .wrapper.homepage section.swiper .container .item.current .inner{
    left: 50%;
  }
  .wrapper.homepage section.swiper .container .item.current .inner .image-box{
    left: 45%;
  }
}

@media (min-width: 1024px){
  .wrapper.homepage section.swiper .container .item.current .inner{
    left: 50%;
  }
  .wrapper.homepage section.swiper .container .item.current .inner .image-box{
    left: 45%;
  }
}

@media (min-width: 1366px) and (max-width: 1366px){
  .wrapper.homepage section.swiper .container .item.current .inner{
    left: 40%;
  }
  .wrapper.homepage section.swiper .container .item.current .inner .image-box{
    left: 45%;
  }
}

@media (min-width: 1367px){
  .wrapper.homepage section.swiper .container .item.current .inner{
    left: 30%;
  }
  .wrapper.homepage section.swiper .container .item.current .inner .image-box{
    left: 45%;
  }
}
