
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
.righteous-regular {
  font-family: "Righteous", serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --white-color:                 #e8ecf5;
  --coral-color:                 #ff7f50;
  --primary-color:                #daa520;
  --section-bg-color:             #f9f9f9;
  --warning-color:                 #ffc107;
  --danger-color:                 #c53333;
  --dark-color:                   #0f4da2;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #0f4da2;
  --p-color:                      #0f4da2;
  --bg-color:                      #e8ecf5;

  --body-font-family:           'Righteous', serif;
  --h1-font-family:              'Righteous', serif;
  --h2-font-family:              'Righteous', serif;
  --h3-font-family:              'Righteous', serif;
  --h1-font-size:               2.5rem;
  --h2-font-size:               2.25rem;
  --h3-font-size:               1.75rem;
  --h4-font-size:               1.5rem;
  --h5-font-size:               1.38rem;
  --h6-font-size:               1.13rem;
  --p-font-size:                 1rem;
  
   --sm-h1-font-size:               1.5rem;
  --sm-h2-font-size:               1.125rem;
  --sm-h3-font-size:               1.0rem;
  --sm-h4-font-size:               0.9rem;
  --sm-h5-font-size:               0.8rem;
  --sm-h6-font-size:               0.7rem;
  --sm-p-font-size:                 0.6rem;
  --sm-copyright-text-font-size:   0.88rem;
  --sm-custom-link-font-size:      0,6rem;

    --sx-h1-font-size:               1.5rem;
  --sx-h2-font-size:               1.125rem;
  --sx-h3-font-size:               0.88rem;
  --sx-h4-font-size:               0.75rem;
  --sx-h5-font-size:               0.69rem;
  --sx-h6-font-size:               0.57rem;
  --sx-p-font-size:                 0.31rem;
  --sx-copyright-text-font-size:   0.88rem;
  --sx-custom-link-font-size:      0,6rem;

  --font-weight-light:          300;
  --font-weight-normal:         500;
  --font-weight-bold:           700;
  --font-weight-black:          900;
  
}

body,
html {
  height: 100%; font-size: 100%
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width:48px;
  height:48px;
  display: none;
  z-index:10000;
  background-image:url(../img/go_totop.png);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/


h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-normal);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
  font-family: var(--h1-font-family);
  color: var(--title-color);
  text-decoration:none; 
}

h2 {
  font-size: var(--h2-font-size);
    font-family: var(--h2-font-family);
     line-height: normal;
       color: var(--title-color);
    text-decoration:none; 
}

h3 {
  font-size: var(--h3-font-size);
  font-family: var(--h3-font-family);
         color: var(--title-color);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-normal);
  
}
li {
  font-weight: normal;
  color: var(--p-color);
  margin: 6px 0 0 10px;
}
.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}
.kl-bgcolor { background: #f27e34;
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}
.red-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--coral-color);
  padding-bottom: 4px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 2px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--danger-color);
}
/*---------------------------------------
  CUSTOM WHITE LINK            
-----------------------------------------*/

.custom-white-link {
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: text-bottom;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-white-link::after {
  content: "";
  width: 0;
  height: 3px;
  bottom: 0px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-white-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-white-link:hover,
.custom-white-link:hover::after {
  color: var(--white-color);
    font-weight: var(--font-weight-bold);
}
/*---------------------------------------
  CUSTOM RED LINK            
-----------------------------------------*/

.custom-red-link {
  color: var(--coral-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: text-bottom;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-red-link::after {
  content: "";
  width: 0;
  height: 3px;
  bottom: 0px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-red-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-red-link:hover,
.custom-red-link:hover::after {
  color: var(--coral-color);
    font-weight: var(--font-weight-bold);
}
/*---------------------------------------
  UPPER RED LINK            
-----------------------------------------*/

.upper-red-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: text-top;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.upper-red-link::after {
  content: "";
  width: 0;
  height: 5px;
  bottom: 19px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.upper-red-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.upper-red-link:hover,
.upper-red-link:hover::after {
  color: var(--p-color);
    font-weight: var(--font-weight-bold);
}
/*---------------------------------------
  CUSTOM YELLOW LINK            
-----------------------------------------*/
.custom-yellow-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: text-top;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-yellow-link::after {
  content: "";
  width: 0;
  height: 0px;
  bottom: 0px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-yellow-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-yellow-link:hover,
.custom-yellow-link:hover::after {
  color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}


b,
strong {
  font-weight: var(--font-weight-bold);
}
.farbring {
border: 10px solid #ffc107;
border-radius: 50%;
z-index: 100;
box-sizing: border-box;
}
.rotring {
border: 5px solid green;
border-radius: 50%;
z-index: 100;
box-sizing: border-box;
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 0px;
  padding-bottom: 0px;
}
/*
.navbar-brand {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}
*/
.navbar-brand {
z-index:100;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 15px;
  padding-left: 15px;
}

.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  font-size: 28px;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: var(--coral-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
 STARTTOP            
-----------------------------------------*/
.starttop {
  position: absolute;
  top: 100px;
  overflow: hidden;
      height: 100vh;
}

@media screen and (min-width: 992px) {
  .starttop {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

.starttopText {
  position: absolute;
  z-index: 9;
  top: 0%;
  left: 0%;
  transform: translate(0%, 0%);
  width: 90%;
  text-align: left;
}
.starttopImg1 {
  position: absolute;
  z-index: 9;
  top: 0%;
  left: -25%;
  transform: translate(-10%, 0%);
  width: 85%;
  text-align: center;
}
.starttopImg2 {
  position: absolute;
  z-index: 9;
  top: 75%;
  left: 75%;
  transform: translate(-30%, -50%);
  width: 85%;
  text-align: center;
}
/*---------------------------------------
 ZOOM-KARTE              
-----------------------------------------*/

#map {
  position: relative;
/*  top: 0px;
  left: 0px; */
  width: 967px;
  height: 1175px;
  overflow: hidden;
  background-repeat: no-repeat;
  border: 1px solid #b51f1f;
}
#map  a.bullet {
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background: transparent;
    text-decoration: none;
    border: 1px solid red;
    opacity: .4;
    z-index: 2;
}
#map  a.bullet1 {
    display: block;
    position: absolute;
    width: 15px;
    height: 20px;
    background: transparent;
    text-decoration: none;
    border: 1px solid red;
    opacity: .4;
    z-index: 2;
}
#map  img.zoomable {
    display: block;
    position: absolute;
    background: transparent;
    text-decoration: none;
    border: 1px solid yellow;
    opacity: .2;
    z-index: 1;
   -webkit-box-shadow: 2px 2px 4px #777777;
    box-shadow: 2px 2px 4px #777777; 
}
#map  div.popup {
    display: none;
    position: absolute;
    width: 200px;
    top: 100px;
    left: 150px;
    background: #ef7d00;
    z-index: 3;
    padding: 10px;
    border: 2px solid black;
}
#map  div.popup    a.close {
      display: block;
      position: absolute;
      bottom: 0;
      right: 0;
}
#returnlink {
  display: block;
  position: absolute;
  top: 0; width: 80px;
  left: 0px;
  color: #ffff00;
  background: #b51f1f;
  padding: 3px;
 -webkit-box-shadow: 3px 3px 7px #777777;
  box-shadow: 3px 3px 7px #777777; 
}
/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}
.gl-team-thumb {
  background: var(--white-color);
  position: relative;
  bottom: -10%;
  right: 0;
  width: 65%;
  padding: 5px 5px 5px 5px;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 20.5rem;
}

.carousel-control-prev {
  right: auto;
  left: 5rem;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: rgba(255,255,0,0.3);
  background-size: 50% 50%;
  border-radius: 50px;
  width: 3rem;
  height: 3rem;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 5.0rem;
}

.carousel1-control-prev {
  right: 4rem;
  left: auto;
}

.carousel1-control-next-icon, 
.carousel1-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 50px;
  width: 2rem;
  height: 2rem;
}
/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}

/*---------------------------------------
  NEWS & EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

table.kalender
{
  width: 95%;
  border: 2px solid transparent;
  border-collapse: separate;
  border-spacing: 2px;
}
table.kalender th {
  text-align: center;
  border: 2px solid transparent;
  padding: 2px;
  font-size: 75%;
}
table.kalender td {
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  font-size: 75%;
}
table.kalender td.d{
 background: url('images/dunstan.png') no-repeat;
 background-position: right top;
}
table.kalender td.d{
 background: url('images/dunstan1.png') no-repeat;
 background-position: right top;
}
table.kalender td.z{
 background: url('images/zwsp.png') no-repeat;
 background-position: right top;
}
table.kalender td.z1{
 background: url('images/zwsp1.png') no-repeat;
 background-position: right top;
}
table.kalender td.DE{
 background: url('images/DE.png') no-repeat;
 background-position: right bottom;
 background-size: 20px;
}
table.kalender td.AT{
 background: url('images/AT.png') no-repeat;
 background-position: right bottom;
 background-size: 20px;
}
table.kalender td.CH{
 background: url('images/CH.png') no-repeat;
 background-position: right bottom;
 background-size: 18px;
}
table.kalender td.IT{
 background: url('images/IT.png') no-repeat;
 background-position: right bottom;
 background-size: 20px;
}
table.kalender td.f1{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #fffacd;
}
table.kalender td.f2{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
   background-color: #ffd700;
}
table.kalender td.f3{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
    background-color: #f3e2a9;
}
table.kalender td.f4{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
    background-color: #eec900;
}
table.kalender td.f5{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
    background-color: #f4fa58;
}
table.kalender td.f6{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #eec900;
}
table.kalender td.f7{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
 background-color: #fff8dc;
}
table.kalender td.f8{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
  font-size: 75%;
  background-color: #eeb422;
}
table.kalender td.f9{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #ffa07a;
}
table.kalender td.f10{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #f0e68c;
}
table.kalender td.f11{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #ff8c00;
}
table.kalender td.f12{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #ffc0cb;
}
table.kalender td.f13{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #eed2ee;
}
table.kalender td.f14{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #adff2f;
}
table.kalender td.f15{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #98f5ff;
}
table.kalender td.f16{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #cdcdc1;
}
table.kalender td.f17{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #9aff9a;
}
table.kalender td.f18{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #d8bfd8;
}
table.kalender td.f19{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #dcdcdc;
}
table.kalender td.f20{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #b4eeb4;
}
table.kalender td.f21{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #c1ffc1;
}
table.kalender td.f22{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #87cefa;
}
table.kalender td.f23{
  text-align: left;
  border: 2px solid transparent;
  padding: 2px;
  color: #b51f1f;
font-size: 75%;
  background-color: #caff70;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 1280px) {
  h1 {
    font-size: var(--h1-font-size);
  }

  h2 {
    font-size: var(--h2-font-size);
  }
  h3 {
    font-size: var(--h3-font-size);
  }

  h4 {
    font-size: var(--h4-font-size);
  }

  h5 {
    font-size: var(--h5-font-size);
  }

  h6 {
    font-size: var(--h6-font-size);
  }
   p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  letter-spacing: 0;
}
  .starttopText p {
    font-size: var(--p-font-size);
     font-weight: var(--font-weight-normal);
  }
 

  .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section-padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}
/* ---------------------------------------------------
    OFFCANVAS ESSENTIALS
----------------------------------------------------- */

.offcanvas-start {
  width: 600px;
}

/* Desktop view */
@media (min-width: 576px) {
  .container {
    padding-left: 10px;
    margin-left: inherit;
  }
  
  #sidebarCollapse {
    display: none;
  }
  
  .offcanvas-backdrop {
    display: none;
  }
}


/* ---------------------------------------------------
    MENU TOGGLE BUTTON ANIMATIONS
----------------------------------------------------- */

#sidebarCollapse {
  width: 40px;
  height: 40px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background: none;
  box-shadow: none;
  outline: none !important;
  border: none;
}

#sidebarCollapse span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #000;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#sidebarCollapse span:nth-child(1) {
  top: 0px;
  
}

#sidebarCollapse span:nth-child(2),
#sidebarCollapse span:nth-child(3) {
  top: 15px;
}

#sidebarCollapse span:nth-child(4) {
  top: 30px;
}

#sidebarCollapse.active span:nth-child(1) {
  top: 15px;
  width: 0%;
  left: 50%;
}

#sidebarCollapse.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#sidebarCollapse.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#sidebarCollapse.active span:nth-child(4) {
  top: 15px;
  width: 0%;
  left: 50%;
}


/* ---------------------------------------------------
    SIDEBAR STYLES
----------------------------------------------------- */

.bi {
  vertical-align: -.125em;
  pointer-events: none;
  fill: currentColor;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .65); 
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #e5e5e5;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #e5e5e5;
}
.btn-toggle-nav a.active {
  font-weight: bold;
}


/* ---------------------------------------------------
    OPTIONAL NAVBAR HEADER THEME
----------------------------------------------------- */

.offcanvas-header {
  background-color: #0d6efd!important;
  color: white!important;
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 720px) {
  h1 {
    font-size: var(--sm-h1-font-size);
  }

  h2 {
    font-size: var(--sm-h2-font-size);
  }
  h3 {
    font-size: var(--sm-h3-font-size);
  }

  h4 {
    font-size: var(--sm-h4-font-size);
  }

  h5 {
    font-size: var(--sm-h5-font-size);
  }

  h6 {
    font-size: var(--sm-h6-font-size);
  }
 p {
  color: var(--p-color);
  font-size: var(--sm-p-font-size);
  font-weight: var(--font-weight-small);
  letter-spacing: 0;
}
  .starttopText p {
    font-size: var(--sm-p-font-size);
     font-weight: var(--font-weight-small);
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 16px;
  }
 h1 {
    font-size: var(--sx-h1-font-size);
  }

  h2 {
    font-size: var(--sx-h2-font-size);
  }
  h3 {
    font-size: var(--sx-h3-font-size);
  }

  h4 {
    font-size: var(--sx-h4-font-size);
  }

  h5 {
    font-size: var(--sx-h5-font-size);
  }

  h6 {
    font-size: var(--sx-h6-font-size);
  }
 p {
  color: var(--p-color);
  font-size: var(--sx-p-font-size);
  font-weight: var(--font-weight-small);
  letter-spacing: 0;
}
  .starttopText p {
    font-size: var(--sx-p-font-size);
     font-weight: var(--font-weight-small);
  }
}


