

html, 
html  * {
 box-sizing: border-box;
}

body {
  margin: 0;
  height: 100%;
  font-family: Montserrat, sans-serif;
 color: #25688B;
    
    
}



 h1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
    margin-left: 40px;
    margin-top: 40px;
    text-transform: uppercase;
}

h2 {
    font-size: 13px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 0px;
    margin-left: 40px;
    margin-right: 40px;
    text-transform: uppercase;
}

p {
       font-size: 12px;
        margin-left: 40px;
    margin-right: 40px;
 
}
    



}

strong {
    font-weight: bold;
}

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}   
    


  .main-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100vw;
  }

  .section-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    align-self: stretch;
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  .content-box {
    background-color: #fff;
    width: auto;
    flex-direction: column;
    display: flex;
  
    align-self: stretch;
  }

  .header-section {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100px;
    width: 100vw;
    background-color: #e5fdff;
    align-self: stretch;
    margin-left: calc(50% - 50vw);
  }

  .header-container {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100px;
    width: 100%;
    background-color: #e5fdff;
    align-self: stretch;
    margin: 0 auto;
    flex-grow: 1;
    max-width: 1200px;
  }

  .header-content {
    align-self: stretch;
    display: flex;
    width: auto;
    align-items: center;
    padding: 20px 40px;
  }

  @media (max-width: 800px) {
    .header-content {
      white-space: initial;
    }
  }

 @media (max-width: 500px) {
    .header-content {
      white-space: initial;
      padding: 15px;
    }
  }

  .header-inner {
    justify-content: space-between;
    display: flex;
    width: auto;
    gap: 20px;
    flex-grow: 1;
  }

  @media (max-width: 800px) {
    .header-inner {
      max-width: 100%;
      flex-wrap: wrap;
      white-space: initial;
    }
  }

    
  .logo-img {
    aspect-ratio: 1;
    object-fit: auto;
    object-position: center;
    width: 85px;
    alt: "Katrin Jäger";
    z-index: 10;
  }


 .top-nav {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    white-space: nowrap;
    text-transform: uppercase;
    justify-content: center;
    color: #25688B;
    flex-direction: row;
    align-items: center;
    padding: 0;
    
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  margin-left: 25;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    z-index: 1;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #51758E;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 800px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 10px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 0;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    color: 51758E;
    background-color: #e5fdff;
      
      
  }
  
}    
    

    a:link {
  color: #25688B;
  text-decoration: none;
        
}

a:active {
  color: #254c74;
  font-weight: 600;
  text-decoration: none;
}    

a:visited {
  color: #9BA0AD;
  text-decoration: none;
}

a:hover {
  color: #254c74;
  font-weight: 600;
  text-decoration: none;
}

a#highlight { 
    color:#254c74;
    font-weight: 600;
        
}  
    

  .headline-text {
    color: #25688B;
    text-align: right;
    text-transform: uppercase;
    position: inherit;
    height: auto;
    padding-right: 40px;
      padding-left: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    font: 275 48px/53px Montserrat, sans-serif;
  }

  @media (max-width: 800px) {
    .headline-text {
      max-width: 100%;
      font-size: 39px;
      line-height: 44px;
      padding-top: 20px;
      padding-bottom: 0px;
    }
  }

@media (max-width: 500px) {
    .headline-text {
     font-size: 30px;
      line-height: 34px;
      padding-top: 20px;
      padding-bottom: 0px;
    }
  }
  .bold-text {
    font-weight: 500;
  }

  .highlight-text {
    font-weight: 500;
    color: #25688B;
  }


.texte {
    color: #204f7d;
    text-align: right;
    text-transform: uppercase;
    padding-top: 0px;
    padding-bottom: 20px;
    font: 275 24px/29px Montserrat, sans-serif;
    font-weight: 400;
 }

 @media (max-width: 800px) {
    .texte {
      max-width: 100%;
      font-size: 20px;
      line-height: 24px;
      padding-top: 10px;
      padding-bottom: 0px;
    }
  }



  .gallery-container {
    width: auto;
    align-self: stretch;
    flex-direction: column;
    display: flex;
    padding: 0 40px;
  }

  @media (max-width: 800px) {
    .gallery-container {
      max-width: 100%;
      margin-top: 20px;
    }
  }

  .gallery-grid {
       margin-bottom: 20px;
      gap: 20px;
    display: flex;
      height: auto; 
  overflow: hidden;
              
  }

  @media (max-width: 800px) {
    .gallery-grid {
      flex-direction: column;
      align-items: stretch;
      gap: 0px;
     margin-bottom: 0px;
    }
  }

.gallery-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 33%;
    margin-left: 0px;
     }

  @media (max-width: 800px) {
    .gallery-column {
      width: 100%;
        margin-top: 20px;
    }
  }

.gallery-column-quer {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: 0px;
     }

  @media (max-width: 800px) {
    .gallery-column-quer {
      width: 100%;
        margin-top: 20px;
    }
  }

.gallery-column-quadrat {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 65%;
    margin-left: 0px;
     }

  @media (max-width: 800px) {
    .gallery-column-quadrat {
      width: 100%;
        margin-top: 20px;
    }
  }  


.gallery-column-cover {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
        margin-left: auto;
      margin-right: auto;
     }

  @media (max-width: 800px) {
    .gallery-column-cover {
      width: 100%;
        margin-top: 20px;
    }
  }


.gallery-column-seite {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 100%;
      margin-left: auto;
      margin-right: auto;
     }

  @media (max-width: 800px) {
    .gallery-column-seite {
      width: 100%;
        margin-top: 20px;
    }
  }


.gallery-column-full {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 100%;
    margin-left: 0px;
    margin-bottom: 20px;
  
     }

  @media (max-width: 800px) {
    .gallery-column-full {
      width: 100%;
        margin-top: 20px;
        margin-bottom: 0px;
    }
  }

.gallery-column-mitte {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 60%;
        margin-left: auto;
      margin-right: 0px;
     }

  @media (max-width: 800px) {
    .gallery-column-mitte {
      width: 100%;
        margin-top: 20px;
    }
  }


  .gallery-image {
    aspect-ratio: 1;
    object-fit: auto;
    object-position: center;
    width: 100%;
      
    
  }

  @media (max-width: 800px) {
    .gallery-image {
      margin-top: 0px;
        
    }
  }



  .gallery-image-unter {
    aspect-ratio: auto;
    object-fit: auto;
    object-position: center;
    width: 100%;
         border-color: b1b2b3;
    
  }

  @media (max-width: 800px) {
    .gallery-image-unter {
      margin-top: 0px;
        
    }
  }



  .video-column {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 33%;
  }

  @media (max-width: 800px) {
    .video-column {
      width: 100%;
        margin-top: 20px;
    }
  }

  .video-column-full {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 100%;
  }

  @media (max-width: 800px) {
    .video-column-full {
      width: 100%;
        margin-top: 20px;
    }
  }

.video-column-quadrat {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 85%;
    margin-left: auto;
    margin-right: 0px;
  }

  @media (max-width: 800px) {
    .video-column-quadrat {
      width: 100%;
        margin-top: 20px;
    }
  }


.video-column-4zu5 {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 60%;
    margin-left: auto;
    margin-right: 0px;
  }

  @media (max-width: 800px) {
    .video-column-4zu5 {
      width: 100%;
        margin-top: 20px;
    }
  }

.video-column-9zu16 {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 45%;
    margin-left: auto;
    margin-right: 0px;
  }

  @media (max-width: 800px) {
    .video-column-9zu16 {
      width: 100%;
        margin-top: 20px;
    }
  }

.video-column-quer {
    display: flex;
    flex-direction: column;
    line-height: normal;
    width: 50%;
    margin-left: auto;
    margin-right: 0px;
  }

  @media (max-width: 800px) {
    .video-column-quer {
      width: 100%;
        margin-top: 20px;
    }
  }

  .video-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 20px;
    min-width: 20px;
    width: 100%;
  }

  .video-container {
    position: relative;
  }

  .video-player {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: top;
    border-radius: 1px;
    position: inherit;
    display: flex;
    flex-direction: column;
    min-height: 20px;
    min-width: 20px;
       height: auto !important;

 
  }






.footermenu {
  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
justify-content: flex-end;
    list-style-type: none;
  margin: 0;
  padding: 0;
}

.footermenu > li {
  margin-left: 20px;
  overflow: hidden;
}



.col-social {
	float: left;
	padding-right: 10px;
	
}

.social-default{
	width: 1.5em;
}

.social-hover{
	width: 1.5em;
}

.col-social .social-hover {
	display: none;
}

.col-social a:hover .social-default {
	display: none;
}
.col-social a:hover .social-hover {
	display: inline;
}





    
 /* [1] The container */
.img-hover-zoom {
  height:inherit; /* [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
}   
    




 
