* {
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

@media screen and (min-width: 600px) {
  body {
    font-size: 18px;
  }
}
h1, h2 {
  text-align: center;
  color: #009fc5;
  font-weight: 700;
  font-size: 43px;
  padding: 8px 10px;
  font-family: "Nanum Gothic", sans-serif;
}

h1 {
  padding: 0;
  margin-bottom: 20px;
  font-size: 38px;
  margin: 70px auto;
  margin-top: 0px;
  position: relative;
  max-width: 650px;
  text-align: center;
}
h1:before {
  content: " ";
  height: 2px;
  width: 180px;
  background: #009fc5;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}
h1:after {
  content: " ";
  height: 2px;
  width: 180px;
  background: #009fc5;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}
h1.title::before, h1.title::after {
  height: 0;
  width: 0;
}

@media screen and (max-width: 700px) {
  h1 {
    max-width: 400px;
  }
  h1::before, h1::after {
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    max-width: 300px;
  }
  h1::before, h1::after {
    width: 50px;
  }
}
h2 {
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  border-radius: 10px;
}

img:not(.noDisplay) {
  cursor: pointer;
}

section {
  padding: 80px 0;
}
section.gray {
  background-color: #fafafa;
}
section > .container {
  margin: 0 auto;
  width: 84%;
  max-width: 1100px;
}

/* header nav*/
body header {
  z-index: 10;
  background-color: #dfdfdf;
  height: 80px;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  justify-content: space-between;
}
body header .logo {
  width: 80px;
  padding-top: 10px;
}
body header button {
  border-color: transparent;
  background: transparent;
}
body header nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  height: 100%;
  width: 300px;
  max-width: 100%;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  text-align: right;
  font-size: 4vh;
}
body header nav li {
  margin: 4vh;
}
body header nav li a {
  color: inherit;
}
body header nav li :hover {
  color: #239fc4;
  font-weight: bold;
}
body header nav.open {
  right: 0;
  top: 80px;
  animation: navload 0.5s linear;
}
body header nav.open .closeNavBtn {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 300px;
}
body header button.navBtn {
  cursor: pointer;
}
body header button.navBtn.open .open {
  display: none;
}
body header button.navBtn.closed .close {
  display: none;
}
@media screen and (min-width: 920px) {
  body header .open {
    display: none;
  }
  body header nav {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 100px;
    right: 0;
    width: calc(100% - 100px);
    height: 80px;
    overflow: hidden;
    background-color: transparent;
  }
  body header nav ul {
    display: flex;
    justify-content: space-around;
    color: black;
    width: 700px;
  }
  body header nav ul li {
    display: inline-block;
    font-size: 20px;
    margin: 0;
  }
}

#fotoDisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8352941176);
  padding: 5px;
  z-index: 100;
}
#fotoDisplay img {
  border-radius: 0;
}
#fotoDisplay.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
#fotoDisplay .container {
  position: relative;
  max-height: 100%;
}
#fotoDisplay img {
  max-height: 80vh;
  max-width: 100%;
}
#fotoDisplay button.close {
  position: absolute;
  right: 5px;
  top: -40px;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  padding: 0;
  text-align: center;
  border: transparent;
  background-color: rgba(0, 0, 0, 0.425);
  background-color: transparent;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
#fotoDisplay button.close:hover {
  font-weight: 600;
}
#fotoDisplay.group {
  background-color: black;
}
#fotoDisplay.group .previous, #fotoDisplay.group .next {
  display: flex;
}
#fotoDisplay .previous, #fotoDisplay .next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background-color: rgba(67, 67, 67, 0.6784313725);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  left: 20px;
  z-index: 1000;
}
#fotoDisplay .next {
  left: unset;
  right: 20px;
}
@media screen and (max-width: 500px) {
  #fotoDisplay .previous, #fotoDisplay .next {
    top: 90%;
  }
}
#fotoDisplay .index {
  display: none;
}

#Home {
  background: linear-gradient(rgba(0, 5, 1, 0.5215686275), rgba(0, 5, 1, 0.2745098039)), url(../imgs/Home/DSC_5166.JPG);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: calc(60vh - 70px);
  margin-top: 70px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 0 5%;
  text-align: center;
}
#Home .title {
  font-size: clamp(49px, 10vw, 100px);
  font-weight: 300;
  color: white;
}
#Home .subtitle {
  font-size: clamp(20px, 4vw, 35px);
}
#Home .maak-afspraak {
  margin-top: 10%;
}

@media screen and (min-width: 620px) {
  #Home {
    height: calc(100vh - 70px);
    background: linear-gradient(rgba(0, 5, 1, 0.5215686275), rgba(0, 5, 1, 0.2745098039)), url(../imgs/Home/DSC_5166.JPG) fixed;
    background-size: cover;
  }
}
#HomeText .Over h2 {
  text-align: left;
  padding-left: 0px;
  margin: 0;
  transform: translateY(-20px);
}
#HomeText .Over .content {
  display: flex;
  align-items: center;
}
#HomeText .Over .imgContainer {
  height: 100%;
  margin-left: 30px;
}
#HomeText .Over .p2 {
  margin-top: 30px;
}
#HomeText .Vacatures {
  border: #239fc4 solid 5px;
  padding: 20px;
  margin-top: 50px;
}
#HomeText .Vacatures p {
  margin-bottom: 30px;
}
#HomeText .Vacatures ul {
  list-style-type: disc;
  padding-left: 30px;
}
#HomeText .Sponsoren {
  margin-top: 70px;
  width: 100%;
}
#HomeText .Sponsoren h2 {
  display: none;
}
#HomeText .Sponsoren .logos {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  padding: 10px 0;
}
#HomeText .Sponsoren .logos ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  animation: scroll 10s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 3000px;
}
#HomeText .Sponsoren .logos li {
  flex: 0 0 auto;
  margin: 0 43px;
}
#HomeText .Sponsoren .logos img {
  max-height: 100px;
  height: auto;
  width: auto;
}

@media screen and (min-width: 900px) {
  #HomeText .container .flex {
    display: flex;
  }
  #HomeText .container .Over .imgContainer {
    padding: 20px;
    min-width: 150px;
  }
  #HomeText .container .Vacatures {
    margin: 8px;
    margin-left: 50px;
    max-width: 400px;
  }
  #HomeText .container .Vacatures h2 {
    text-align: left;
    padding-left: 0px;
    margin: 0;
  }
}
@media screen and (min-width: 900px) and (max-width: 1000px) {
  #HomeText .Over .imgContainer {
    display: none;
  }
}
#Agenda .activiteit {
  margin-bottom: 15px;
}
#Agenda .activiteit p {
  padding-left: 6px;
}

@media screen and (min-width: 800px) {
  #Agenda .container {
    display: flex;
    justify-content: space-evenly;
  }
  #Agenda .orkest {
    width: calc(50% - 82px);
  }
  #Agenda .koor {
    width: calc(50% - 82px);
  }
  #Agenda .line {
    width: 2px;
    background-color: #cfcfcf;
    margin: 40px;
  }
}
#Nieuws article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: #cfcfcf solid 2px;
}
#Nieuws article p {
  margin-bottom: 10px;
  margin-top: 10px;
}
#Nieuws img {
  width: 100%;
  max-width: 500px;
}
#Nieuws .toonAlles {
  text-align: center;
  display: block;
  text-decoration: underline;
  color: black;
}
#Nieuws iframe {
  width: 100%;
  aspect-ratio: 560/314;
}
@media screen and (min-width: 740px) {
  #Nieuws iframe {
    width: 300px;
  }
}

#Orkest div.orkest .imgContainer {
  display: flex;
  justify-content: center;
}
#Orkest div.orkest .text {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  #Orkest div.orkest {
    display: flex;
  }
  #Orkest div.orkest .text {
    text-align: left;
  }
  #Orkest div.orkest .imgContainer {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    width: 40%;
    min-width: 400px;
    padding-left: 50px;
  }
}

.dirigent img {
  float: left;
  width: 30%;
  max-width: 200px;
  margin-right: 10px;
}
@media screen and (min-width: 700px) {
  .dirigent img {
    float: none;
    height: -moz-fit-content;
    height: fit-content;
  }
  .dirigent div {
    display: flex;
    justify-content: space-around;
  }
  .dirigent div p {
    margin-left: 10px;
  }
}

#Zangkoor .koor {
  margin-bottom: 20px;
}
#Zangkoor .koor img {
  margin-top: 20px;
}
#Zangkoor .koor p {
  margin-bottom: 20px;
}
@media screen and (min-width: 850px) {
  #Zangkoor .koor {
    display: flex;
  }
  #Zangkoor .koor img {
    width: 30%;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 0;
    margin-left: 20px;
  }
}

#Opleiding p, #Opleiding img {
  margin-bottom: 20px;
}
#Opleiding .talentKlas .imgContainer {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  #Opleiding .talentKlas {
    display: flex;
  }
  #Opleiding .talentKlas .text {
    text-align: left;
  }
  #Opleiding .talentKlas .imgContainer {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    width: 40%;
    min-width: 400px;
    padding-left: 50px;
  }
}

#Contact table {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  table-layout: fixed;
}
#Contact table td {
  padding: 10px 15px;
  text-align: left;
}
#Contact table tr:nth-child(even) {
  background-color: #f9f9f9;
}
#Contact table tr:nth-child(odd) {
  background-color: #ffffff;
}
#Contact table td:first-child {
  font-weight: bold;
  width: 30%;
}
#Contact table tr:nth-child(1) td:nth-child(2) {
  word-wrap: break-word;
}
#Contact .map {
  height: calc(100vw - 100px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.3490196078) 0 0 10px 0.5px;
}
#Contact .adres {
  margin-bottom: 20px;
  font-size: 1.2em;
}
#Contact .adres p {
  margin-bottom: 4px;
}
@media screen and (min-width: 650px) {
  #Contact .flex {
    display: flex;
    flex-direction: row-reverse;
  }
  #Contact .adres {
    width: 50%;
    padding: 40px;
    margin-bottom: 40px;
  }
  #Contact .adres p {
    margin-bottom: 40px;
  }
  #Contact .map {
    height: initial;
    width: 50%;
  }
}

#Media .albums {
  display: none;
  grid-gap: 10px;
  --colums: 2;
  grid-template-columns: repeat(var(--colums), 1fr);
}
#Media .albums.active {
  display: grid;
}
#Media .album {
  cursor: pointer;
  display: flex;
  align-items: end;
  aspect-ratio: 1/1;
  margin: 0px;
  border-radius: 10px;
  background-color: #e1e1e1;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
#Media .album p {
  color: white;
  background-color: rgba(0, 0, 0, 0.4705882353);
  font-size: 24px;
  padding: 5px;
  width: 100%;
}
@media screen and (min-width: 400px) {
  #Media .albums {
    --colums: 2;
    grid-gap: 20px;
  }
}
@media screen and (min-width: 800px) {
  #Media .albums {
    --colums: 4;
  }
}
#Media .albumDisplay {
  display: none;
}
#Media .albumDisplay.active {
  display: block;
}
#Media .albumDisplay .terug {
  cursor: pointer;
  width: 100%;
  margin-bottom: 20px;
  outline: 0;
  color: #fff;
  background-color: #009fc5;
  border-color: #009fc5;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#Media .albumDisplay .terug:hover {
  color: #fff;
  background-color: #0196bb;
}
#Media .albumDisplay .foto-grid {
  margin: 0 auto;
  display: grid;
  --colums: 2;
  grid-template-columns: repeat(var(--colums), 1fr);
  grid-gap: 10px;
  padding: 0;
  list-style-type: none;
}
#Media .albumDisplay .foto-grid li {
  cursor: pointer;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
#Media .albumDisplay .foto-grid li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 530px) {
  #Media .albumDisplay .foto-grid {
    --colums:3;
  }
}
@media screen and (min-width: 820px) {
  #Media .albumDisplay .foto-grid {
    --colums:4;
  }
}
@media screen and (min-width: 1400px) {
  #Media .albumDisplay .foto-grid {
    max-width: 1400px;
  }
}

footer {
  background-color: #2b2b2b;
  text-align: center;
  color: white;
}
footer .Sponsors {
  display: none;
}
footer .Socials {
  display: flex;
  justify-content: center;
}
footer .Socials ul {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 600px;
}
footer .copy {
  background-color: black;
}
footer nav {
  margin-bottom: 20px;
  margin-top: 20px;
}
footer nav li {
  padding: 4px;
  font-size: 1.1em;
}
footer nav li a {
  color: #c9c9c9;
}
footer nav li:hover {
  color: white;
  text-decoration: underline;
}
footer .Socials svg {
  color: inherit;
  width: 50px;
}
footer .Socials a {
  color: inherit;
}
footer .Socials .instagram:hover svg {
  background: circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%;
}

/* animation */
@keyframes navload {
  0% {
    right: -300px;
  }
  100% {
    right: 0px;
  }
}
/* Scrolling animation */
@keyframes scroll {
  from {
    transform: translateX(0); /* Start at the beginning */
  }
  to {
    transform: translateX(-50%); /* Move left by 50% of the container width */
  }
}/*# sourceMappingURL=style.css.map */