* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  background-color: #090e12;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  font-size: 14pt;
  line-height: 1.5;
  color: #999999;
  font-weight: normal;
  text-decoration: none;
}
.page {
  display: block;
  flex-wrap: wrap;
}



/* SECTIONS */
.fixed {
  background-color: #090e12;
  width: 100%;
  min-width: 650px;
  top: 0px;
  height: 100px;
  position: fixed;
  display: block;
  z-index: 10;
}
.section {
  width: 100%;
  min-width: 650px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.light {
  background-color: #0f171e;
  width: 100%;
  min-width: 650px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* MENU */
.menu {
  padding-left: 50px;
  padding-right: 50px;
  height: 100px;
}
.menu ul {
  padding-top: 40px;
  text-align: right;
  font-size: 16pt;
  float: right;
}
.menu li {
  list-style-type: none;
  padding-left: 20px;
  display: inline;
}
.menu a {
  color: #ffffff;
  text-decoration: none;
}
.menu a:hover {
  color: #ff2d80;
}
.menu a:active {
  color: #ffffff;
}
.menu a:focus {
  color: #ffffff;
}



@media only screen and (max-width: 650px) {
/* SLIDESHOW */
#slideshow {
  width: 100%;
  height: 380px;
  min-width: 650px;
  margin-top: 100px;
  position: relative;
  display: block;
  overflow: hidden;
}
#slideshow div {
  width: 100%;
  height: 380px;
  min-width: 650px;
  position: absolute;
}
#slideshow img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
}
@media only screen and (min-width: 651px) {
/* SLIDESHOW */
#slideshow {
  width: 100%;
  height: 600px;
  min-width: 1000px;
  margin-top: 100px;
  position: relative;
  display: block;
  overflow: hidden;
}
#slideshow div {
  width: 100%;
  height: 600px;
  min-width: 1000px;
  position: absolute;
}
#slideshow img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
}
@media only screen and (min-width: 1400px) {
/* SLIDESHOW */
#slideshow {
  width: 100%;
  height: 800px;
  min-width: 1200px;
  margin-top: 100px;
  position: relative;
  display: block;
  overflow: hidden;
}
#slideshow div {
  width: 100%;
  height: 800px;
  min-width: 1200px;
  position: absolute;
}
#slideshow img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
}
@media only screen and (min-width: 1800px) {
/* SLIDESHOW */
#slideshow {
  width: 100%;
  height: 1040px;
  min-width: 1600px;
  margin-top: 100px;
  position: relative;
  display: block;
  overflow: hidden;
}
#slideshow div {
  width: 100%;
  height: 1040px;
  min-width: 1600px;
  position: absolute;
}
#slideshow img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
}
}


/* CONTENT */
.content {
  padding: 50px;
  padding-bottom: 80px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.content div {
  width: 900px;
}
.headline {
  height: 60px;
  width: auto;
  border: 0px;
}
.content h1 {
  color: #ff2d80;
  font-size: 32pt;
  font-weight: normal;
  text-align: left;
}
.content h2 {
  color: #cccccc;
  font-size: 16pt;
  font-weight: normal;
  padding-top: 40px;
}
.content p {
  padding-top: 10px;
}
.content ul {
  padding-left: 30px;
  padding-top: 10px;
}
.content li {
  padding-left: 10px;
}
.column {
  column-count: 3;
}
.column li {
  font-size: inherit;
}
.content a {
  color: #cccccc;
  text-decoration: none;
}
.content a:hover {
  color: #ffffff;
}
.content a:active {
  color: #ffffff;
}
.quote {
  margin-top: 50px;
  margin-bottom: 10px;
  padding-left: 50px;
  padding-right: 50px;
  font-family: "Old Standard TT", serif;
  font-size: 18pt;
  color: #cccccc;
  text-align: center;
  font-weight: lighter;
  font-style: italic;
}
.example {
  height: auto;
  width: 100%;
  border: 0px;
  padding-top: 50px;
}
.thumbnail {
  width: auto;
  height: 120px;
  padding-top: 10px;
  padding-right: 10px;
}




/* LIGHTBOX */
.lightbox {
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  padding: 50px;
  display: none;
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.8);
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  margin: 0%;
  margin-top: 0%;
  margin-bottom: 0%;
}
.lightbox:target {
  outline: none;
  display: block;
}




/* FOOTER */
.footer {
  padding: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}