<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%; 
  
  overflow-x: hidden;
}
.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 
  /* Setting width &amp; height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);

          
}
/*********************************** Flexboxen  *********************************** */
.flexContainer {
	display: -webkit-box !Important;
    display: -webkit-box !important;
    display: flex !important; 
    flex-wrap:wrap;
    -webkit-flex-wrap:wrap;
}
.spaceBetween{
	-webkit-box-pack: justify;
    justify-content: space-between;
}
.spaceAround{
 justify-content: space-around;
}
.justifyCenter{
	-webkit-box-pack: center;
    justify-content: center;
}
.itemsCenter{
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

body { 
  color: #222221;
  font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    width: 100%;
    height: 100%;
    line-height: 150%;
}
a {
 color: #222221;
}
a:hover {
 color: #222221;
 text-decoration: underline;
}
.overlay {
  position: absolute;
  bottom: 0%;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
	height: 100%; 
  box-sizing: border-box;
  text-align: center;
 
}
#main {
    float: left;
    width: 100%;
}
#content{ 
  float: left;
  width: 100%;
  text-align: center;
  font-size: 21px;
  padding-top: 60px;
  padding-left: 3%;
  padding-right: 3%;
  margin: auto 0;
}
#logos {
    float: left;
    width: 100%;
    padding-top: 100px;
}
#logo{ 
  float: left;
  width: auto;
}
#firmen {
  width: 100%;
  float: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
          margin-top: 40px;
}
.firma {
  padding: 20PX;
  max-width: 250px;
  width: 25%;

  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
    justify-content: center;
}
.firma a{
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.firma img{ width: 100%;}

img{
	max-width:600px;
	height: auto;
	width: auto;
	width: 90%;
}
/*********************************** 1400 *********************************** */
@media screen and (max-width: 1400px) {
    #content{ 
        font-size: 19px;
      }
}
/*********************************** 1200 *********************************** */
@media screen and (max-width: 1400px) {
    #content{ 
        font-size: 18px;
      }
      .firma {
        max-width: 200px;
      }
}
/*********************************** 860 *********************************** */
@media screen and (max-width: 810px) {
  .firma {

    width: 50%;
  }

  .overlay {
    position: relative;
    bottom:auto;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    padding-bottom: 100px;
    box-sizing: border-box;
    text-align: center;
    
  
  }

}

/*********************************** 640 *********************************** */
@media screen and (max-width: 640px) {
    #content{ 
        font-size: 15px;
      }
}
</pre></body></html>