@font-face {
  font-family:'Raleway';
  src: url('../fonts/Raleway\ Regular.woff2') format('woff2'),
  url('../fonts/Raleway\ Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2044;
}

@font-face {
  font-family:'Raleway';
  src: url('../fonts/Raleway\ Bold.woff2') format('woff2'),
  url('../fonts/Raleway\ Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2044;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway\ Thin.woff2') format('woff2'),
    url('../fonts/Raleway\ Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2044;
}

@font-face {
  font-family:'Raleway';
  src: url('../fonts/Raleway\ Medium.woff2') format('woff2'),
  url('../fonts/Raleway\ Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  unicode-range: U+0020-2044;
}


* {
  font-family: 'Raleway';
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

a {
  color: #fff;
  text-decoration: none;
}

button:focus,
input:focus {
  outline: 5px dotted #f00;
}


.logo--hyper {
  height: min-content;
}

.logo--hyper img {
  width: 10rem;
}

.burger-menu {
  fill: #fff;
  width: 1.7rem;
  height: 1.7rem;
  margin: 1rem;
}

.burger-menu:hover {
  cursor: pointer;
}

.cross {
  transition: ease .4s;
  text-align: end;
}

.cross:hover {
  cursor: pointer;
  transform: rotate(180deg);
}

.mobile-nav {
  display: none;
}

.mag-glass {
  fill: #fff;
}

.fullList {
  display: block;
  position: fixed;
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 100;
}

.fullList ul {
  list-style-type: none
}

.program-button {
  display: none;
}

.program-button li {
  border-left: #fff solid;
  margin-left: 1rem;
  padding-left: .5rem;
}

.full-program {
  display: inline;
}

.program {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.svg-right-arrow {
  width: 1rem;
  fill: #fff;
  transform: rotate(-90deg);
  transition: .2s;
}

.svg-down-arrow {
  transform: rotate(0deg);
  transition: .2s;
}

.desktop-nav {
  display: none;
}

.desktop-nav-top {
  display: flex;
  justify-content: space-between;
}

.search-bar {
  padding: 1rem;
  padding-top: .5rem;
  padding-top: .5ren;
}

.search-button {
  padding: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: relative;
  top: .37rem;
  background: #000;
  border: none;
}

.search-button:hover {
  background-color: #fff;
}

.search-button:hover .mag-glass-color {
  fill: black;
}

#language {
  border: none;
  background: black;
  color: #fff;
}

@media (min-width: 80rem) {
  .desktop-nav {
    display: inline;
    color: #fff;
    width: 25rem;
  }

  .desktop-nav-bottom ul{
    list-style: none;
    display: flex;
    /* meer plaats geven*/
    justify-content: space-between;
    margin-top: 2rem;
    margin-right: 1rem;
    font-size: 1.4rem;
  }

  .desktop-nav-bottom li:hover {
    text-decoration: underline;
    color: #fff;
    text-underline-offset: 1rem;

  }

  .desktop-nav a {
    color: #fff;
  }

  .burger-menu {
    display: none;
  }

  .cross {
    display: none;
  }
}

.header-top {
  background-image: url(../media/backgrounds/Gentse-feesten-05.jpg);
  background-repeat: no-repeat;
  height: 40rem;
  background-size: cover;
  background-position-x: 35%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.header-bottom {
  display: flex;
  flex-wrap: wrap;
}

.dates-length {
  width: 10rem;
}

.dates-top {
  width: 100%;
  margin: 1rem;
}

.dates-bottom {
  width: 100%;
}

.dates-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  background-color: #000;
}

.dates {
  width: 20%;
  text-align: center;
  list-style: none;
}

.dates a {
  width: 100%;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  justify-content: center;
  background-color: #000;
  color: #fff;
}

.wrapper span:first-child {
  font-weight: bold;
  font-size: 1.5rem;
}

.wrapper:hover {
  background-color: #fff;
  color: #000;
  transition: ease .4s;
}

.wrapper span {
  width: 100%;
}

.hashtag {
  height: 3rem;
}

.discover {
  height: 3rem;
}

@media (min-width: 50rem) {
  .dates {
    width: 10%;
  }
}



.content {
  margin: 2rem;
  margin-bottom: 4rem;
}

.content--figure--top {
  position: relative;
}

.content--figure--top img{
  width: 100%;
  object-fit: cover;
}

.content--figure--top figcaption {
  background-color: #000;
  color: #fff;
  width: 15rem;
  text-align: center;
  font-size: 1.7rem;

  position: absolute;
  bottom: -1rem;
  left: 2rem; /*margin-left: 2rem; werkt ook*/
}

.content--figure--bottom {
  margin-top: 2rem;
  margin-left: 2rem;
}

content--figure--top:hover img {
  transform: scale(1.1);
}

@media (min-width: 50rem) {
  .content--wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: space-evenly;
  }

  .content {
    max-width: 30%;
  }
  
  .content--figure--top img{
    min-height: 15rem;
    max-height: 18.5rem;
    width: 100%;
    
  }
}

@media (min-width: 65rem) {
  .content {
    max-width: 30%;
  }

  .content--figure--top img{
    min-height: 15rem;
    max-height: 18.5rem;
  }
}

.bold-hyper {
  font-weight: bold;
  color: #000;
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.news-top,
.news-bottom {
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
}

.news-bottom {
  padding-bottom: 4rem;
}

.news-bottom h3{
  font-size: 2rem;
  margin-bottom: .5rem;
}

.news-top figcaption {
  position: absolute;
  bottom: .4rem;
  background-color: #fff;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.news-top img{
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

@media (min-width: 50rem) {
  .news-top img {
    height: 25rem;
  }
}

@media (min-width: 65rem) {
  .news {
    display: flex;
    flex-wrap: wrap;

  }
  
  .news-top {
    width: 40%;
    margin-bottom: 2.5rem;
  }

  .news-top img {
    height: auto;
  }

  .news-bottom {
    width: 45%;
  }

  .news-top figcaption {
    top: 50%;
    bottom: unset;
    rotate: -90deg;
    padding-top: 0;
    left: -1.6rem;
  }
}

.inform {
  border: .2rem solid #000;
  margin: 2rem;
  padding: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #000;
}

.inform-wrapper {
  padding-bottom: 3rem;
}

.slideshow img{
  width: 100%;
}

.margin {
  margin: 2rem;
}

.twitter :last-child {
  margin-top: .5rem;
}

.twitter img {
  width: 100%;
}

.twitter-title-svg {
  width: 12rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.newsletter {
  width: 100%;
  height: 3rem;
  margin-bottom: 1rem;
  background-color: #E9E9E9;
  border: none;
}

.newsletter-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  font-size: 1.3rem;
}

.socials-icons {
  background: #fff;
  border-radius: 100%;
  margin: 1rem;
  align-items: flex-end;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  list-style: none;
}

.footer-top {
  background-image: url(../media/backgrounds/Gentse-feesten-01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 35%;
  padding-bottom: 10rem;
  position: relative;
}

.footer-top__svg {
  background-color: #fff;
  width: 10rem;
  margin-left: 2rem;
  padding: 1rem;
}

.footer-top__socials {
  color: white;
  width: 80%;
  justify-self: flex-end;
  position: absolute;
  bottom: 0rem;
  margin: 2rem;
}

.footer-bottom {
  color: #6F6F6F;
}

.gent-logo {
  width: 4rem;
  margin-bottom: 1rem;
}

.footer-bottom--bold {
  font-weight: bold;
}

.cookie {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cookie-wrapper {
  margin-top: 1rem;
}