@media (orientation: portrait){
  div.contactFooterLeft{
    width: 100%;
    left: 0;
    position: relative;
    bottom: 0;
    text-align: center;
  }
  div.conditions{
    width: 100%;
    text-align: center;
    right: 0;
  }
  div.content_block.block_right .blockImage, div.content_block.block_left .blockImage{
    width: 100%;
    margin-left: 0;
  }
  #slider-overlay, .main-slider{
    height: 45vh;
  }
 
  .slick-slide .slide-image{
    height: 45vh;
  }
  .slick-slide video{
    margin-left:-40%;
    width:180%;
  }
  div.content_block.block_right div.centerTextBlock, div.content_block.block_left div.centerTextBlock, div.centerTextBlock{
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
  }
  div.content_block.block_center div.centerTextBlock{
    text-align: left;
  }
  div.centerTextBlock p br{
   /* display: none;*/
  }
  div.content_block.block_right .titleText, div.content_block.block_left .titleText{
    margin-left: 15%;
    margin-right: 15%;
  }
  #phonebox{
    top: auto;
    bottom: 24px;
    height: auto;
    margin-top: 0;
    left: 0;
    position: absolute;
}
#contentBlock{
  min-height: 28vh;
}
div.content_block.block_center{
  padding-top:2vh;
}
div.content_block .condImage{
    width: 100%;
    height: auto;
    min-height: auto;
    margin:0;
    float:none;
}
div.content_block .condData{
    text-align: center;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}
.condoleance:nth-of-type(odd) .condData,.condoleance:nth-of-type(even) .condData{
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-left:0;
    padding-right: 0;
}
.condoleance:nth-of-type(odd) .condImage, .condoleance:nth-of-type(even) .condImage
{
    float: left;
    margin-left: 5%;
    right: 0;
    width: 90%;
    height: 300px;
    position: relative;
    text-align: center;
    margin-right: 5%;
    background-position: center bottom;
    margin-bottom: 16px;
}
.condoleance:nth-of-type(odd) .titleText, .condoleance:nth-of-type(even) .titleText{
  width:100%;
  float:none;
  text-align: center;
}
div.content_block .condImage img{
    width: 80%;
    height: auto;
}
div.content_block.block_center div.titleFrontText, div.contact_content .titleFrontText{
  text-align: center;
}
.condoleance .titleText{
  width: 100%;
}
div.staffName{
  padding-top: 16px;
}
div.content_block.block_center.condoleance:nth-of-type(odd) .centerTextBlock, div.content_block.block_center.condoleance:nth-of-type(even) .centerTextBlock{
    text-align: center;
    margin-left: 0;
    width: 100%;
    margin-right: 0;
}
div.content_block.block_center.condoleance{
/*  width: 90%;
  margin-left:5%;
  margin-right: 5%;*/
  width: 100%;
}
.condoleance div.condButtons{
  width: 100%;
}
.condoleance div.condButtons div.condButton{
  width: 46%;
  margin:2%;
  float: left;
}
div.content_block.block_center.condoleance .centerTextBlock{
  width: 100%;
  text-align: center;
  margin:0;
}
}

#mobileLogo{
  transition-delay: 1s;
  opacity: 0;
  display: none;
}

#mobileAanmelden, #mobileLivestream{
/*  display: none;*/
}

/* SOCIAL ICONS */
header #mobileSocialIcons{
    right: auto;
    margin: auto;
    bottom: 3vh;
    top: auto;
    position: fixed;
    text-align: center;
    width: 90%;
    margin-left:5%;
}

#mobileSocialIcons img{
    height: 40px;
    width: 40px;
    padding: 9px;
    margin: 5px;
    position: relative;
}

header #mobileSocialIcons a{
    width: 50px;
    height: 50px;
    float:left;
    margin-left: calc(12.5% - 25px);
    margin-right: calc(12.5% - 25px);
    border-radius: 100%;
      display: inline-block;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

header #mobileSocialIcons a svg{
  position: absolute;
  top:0;
  width: 50px;
  height: 50px;
}

header.expanded #mobileSocialIcons a:nth-of-type(1){ 
  transition-delay: 400ms;
  opacity: 1;
}

header.expanded #mobileSocialIcons a:nth-of-type(2){ 
  transition-delay: 600ms;
  opacity: 1;
}

header.expanded #mobileSocialIcons a:nth-of-type(3){ 
  transition-delay: 800ms;
  opacity: 1;
}

header.expanded #mobileSocialIcons a:nth-of-type(4){ 
  transition-delay: 1000ms;
  opacity: 1;
}

#mobileSocialIcons a::before{
    box-sizing: inherit;
    content: '';
    position: absolute;

}

#mobileSocialIcons a path.hoverring{
  stroke-dasharray: 280 280;
  stroke-dashoffset: 280;
      opacity: 0;
  animation-duration: 600ms;
  animation-name: undraw;
  animation-iteration-count: 1;
  animation-direction: forwards;
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
}

@keyframes draw {
  0% {
    opacity: 0;
    stroke-dashoffset: 280;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1:;
    stroke-dashoffset: 0;
  }
}

@keyframes undraw {
  0% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 280;
  }
}

#mobileSocialIcons a:hover path.hoverring{
      stroke-dashoffset: 0;
  animation-duration: 800ms;
      opacity: 1;

  animation-name: draw;
  animation-iteration-count: 1;
  animation-direction: forwards;
  animation-timing-function: cubic-bezier(.645, .045, .355, 1);
}



/* E/O MOBILESOCIAL ICONS */

/* MOBILE LANGUAGES */
#mobileLanguages{
  position: fixed;
    bottom: calc(7vh + 60px);
    width: 80%;
    margin-left:10%;
    text-align: center;
     border-top: .7px solid #444;
    padding-top: 4vh;
}

#mobileLanguages p{
  width: 100%;
  text-align: center;
}

#mobileLanguages p span{
  margin-left:7%;
  margin-right: 7%;
}

#mobileMenuBox{
  display: none;
}


@media (min-width: 320px) and (max-width: 1270px) {
    header{
        height: 15vh;
    }
    header svg.bLogo{
      margin: 1vh;
    }
    body{
      padding-top:15vh;
    }
    #mobileLanguages{
      display: none;
    }
    #aanmelden, #livestream{
      display: none;
    }
    div.nonMobileSlide{
    }
    div.mobileOnlySlide .slide-image{
      background-position: left center;
    }
    div.content_block.block_center div.titleFrontText, div.contact_content .titleFrontText{
        font-size: 32px;
        line-height: 32px;
        text-align: center;
    }
    div.contact_content .centerTextBlock{
      text-align: center;
      width: 100%;
      margin: 0;
      margin-top: 8px;
      color: #aaa;
    }
    div.contact_content #phonebox{
      width: 100%;
      text-align: center;
    }
    div.contact_content .centerTextBlock.contactMail a{
      margin-top:0;
    }
    div.contact_content .showMore{
      display: none;
    }
    div.store{
      width: 100%;
      margin-bottom: 48px;
    }
    div.content_block.block_right .titleText, div.content_block.block_left .titleText{
   /*   margin-left: 10%;
      width: 80%;*/
  /*    margin-right: 10%;*/
    }
    div.content_block.contact_content.reps{
      padding-top:48px;
    }
    div.contact_content .staffMember{
      width: 100%;
    }
    div.contact_content div.contactFooterLeft{
      width: 100%;
      left: 0;
      text-align: end;
      text-align: center;
      top: 40px;
    }
    div.contact_content div.contactIcons{
      margin-top: 175px;
    }
    div.contact_content div.conditions{
      width: 100%;
      text-align: center;
      bottom: 36px;
      right: 0;
    }
    .itemBgImage{
      display: none;
    }
    .titleText{
      margin-left: 10%;
    /*  margin-right: 10%;*/
      width: 80%;
      margin-bottom: 16px;
      margin-top: 16px;
    }
    #page_picture{
      overflow: hidden;
    }
    #page_picture img{
/*      width: 180%;
      margin-left: -40%;*/
      width: 100%;
      margin-left: 0;
    }
    #page_slider{
      width: 180%;
      margin-left: -40%;
      height: 29vh;
    }
    #page_slider .page_slider_img.first_slide, #page_slider .page_slider_img{
        height: 29vh;
    }
    .titleFrontText{
      font-size: 32px;
      line-height: 32px;
      text-align: left;
    }
    .titleBackText{
      font-size: 48px;
      bottom: -16px;
      left: 48px;
    }
    #aanmeldbox{
      top: 50vh;
      z-index: 999;
    }
    #aanmeldbox_content{
      text-align: left;        
    }
        #aanmeldbox_content p{
          text-indent: 0;
        }
        #aanmeldbox_content input{
          margin-top:32px;
        }
    #review_ceremonial{
        position: relative;
        float: left;
        bottom: auto;
        margin-top: 16px;
    }

    header.aanmelden #aanmeldbox{
      height: 100vh;
      height: calc(var(--vh, 1vh) * 100);
      background: #fff;
      top: 50vh;
      top: calc(calc(var(--vh, 1vh) * 100)/2);
    }
    header.aanmelden nav{
      opacity: 0;
    }
    header.aanmelden nav ul li ul.subMenu{
        opacity: 0;
    }
    header #aanmeldbox_aanmelden{
      bottom:30vh;
    }
    header #close_aanmelden{
      bottom:30.5vh;
    }
    #mobileMenuBox{
      display: block;
    }
    header svg.bLogo{
      left: calc(4vh - calc(33px / 2));
    }
    header #mobileLanguages.fadeOutFast{
      opacity: 0;
      transition: 100ms opacity linear;
      transition-delay: 0;
    }
    header #mobileSocialIcons.fadeOutFast{
      opacity: 0;
      transition: 100ms opacity linear;
      transition-delay: 0;
    }
    header #mobileLogo.fadeOutFast{
      opacity: 0;
      transition: 100ms opacity linear;
      transition-delay: 0;      
    }
    header.expanded #mobileLanguages{
      display: none;
    }
    div.condButtons{
      width:100%;
      margin-left:0;
      margin-right: 0;
    }
    div#condSearchBox{
      width: 90%;
      margin-left: 5%;
      margin-right: 5%;
      padding-bottom: 8px;
      padding-top: 8px;
    }
    #condSearchBox div.input_block{
      min-width: 90%;
    }
    div.condContent{
      width: 100%;
      margin-left: 0;
    }
    div.input_block{
      width: 100%;
    }
    .condInputs{
      width:100%;
    }
    .contentBox input, .condInputs input{
      width:100%;
    }
    .contentBox textarea, .condInputs textarea{
      width:100%;
    }
    .companyInput label{
      width: calc(100% - 32px);
      float: right;
    }
    .subTitleText{
      font-size: 32px;
    }
    div.condContent div.condButtons{
      margin-left: 10%;
      width: 80%;
    }
    .flowerItem{
      width: 80%;
    }
    div.moreFlowers{
       margin-left: -36px;
       margin-top: 36px;
    }
    div.content_block .flowerItem img{
      width: 100%;
      height: auto;
    }
    div.content_block .flowerItem img.spin.circle{
      height: 40px;
      width: 40px;
    }
    #close_condoleance{
      position: absolute;
      right: 10%;
      bottom: 51px;
    }
    div.condButtons div.condButton{
        width: 50%;
        margin-left: 0;
        float: left;
        
        margin-bottom: 16px;
        height: 30px;
        margin-top: 0px;
        line-height: 30px;        
    }

    #mobileLanguages{
      display: none;
      overflow: hidden;
      opacity: 0;
    }
    header #mobileLanguages{
      opacity: 0;
      transition: : .3s opacity ease;
      transition-delay: 600ms;
    }
    header.expanded #mobileLanguages{
      opacity: 1;
      transition: : .3s opacity ease;
      transition-delay: 600ms;
    }
    header.expanded #mobileLanguages p{
        transform-style: preserve-3d;
        animation-delay: 500ms;
        transition-delay: 0ms; 
        animation: 800ms showOnNewPlace cubic-bezier(.645, .045, .355, 1);
    }
    #mobileCompanyVideoPreview img{
      border: 1px solid #8d6b22;
      width:60%;
      cursor:pointer;
    }
    #mobileAanmelden, #mobileCompanyVideoPreview{
      display: block;
    }
    #mobilemenu{
        display: block;
        position: fixed;
        top: calc(5vh - calc(33px / 2));
        right: calc(5vh - calc(33px / 2));
        z-index: 3;
    }

    #mobileMenuBox{
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        width: 0;
        background-color: #fff;
        transition: .5s all cubic-bezier(.645, .045, .355, 1);      
    }

    #mobileLogo{
      display: inline-block;
      opacity: 0;
      position: relative;
      transition: .5s opacity ease;
              transition-delay: 0ms;
    }

    header.expanded #mobileLogo{
              transition-delay: 500ms;

              opacity: 1;
    }

header #mobileLogo:after{
 /*   content: '';
    position: absolute;
    left: 50%;
    top:92px;    
    width: 0px;
    height: 1px;
    background: #936e13;
    transition: all 0.45s;
    transition-delay: 1s;*/
       content: '';
  position: absolute;
  left: 50%;
  top: 13.5vh;
  opacity: 0.7;
  width: 0px;
  height: 1px;
  background: #936e13;
  transition: all 0.45s;
}

header nav{
  opacity: 0;
  animation: 300ms opacity ease;
  animation-delay: 500ms;
  height: 0;
  overflow: hidden;
}

header.expanded nav{
  display: flex;
  opacity: 1;
  margin-top:23vh;
  width: 100%;
  transition: 300ms opacity ease;
  transition-delay: 500ms;
  background: #000;
  z-index: 11;
}

header.expanded #mobileLogo:after{
  width: 97%;
  left:1.5%;
  opacity: 1;
  transition-delay: 950ms;
}

header.expanded nav ul li{
  height: auto;
  line-height: 8vh;
  width: 100%;
}
header nav ul li:hover ul.subMenu{
  display: block;
  padding: 0;
}

header nav ul li ul.subMenu{
  height: 0;
  padding:0;
  position: relative;
  overflow: hidden;
  display: block;
  opacity: 0;
  transition: 500ms all ease-in-out;
}

header nav ul li ul.subMenu.expanded{
  height: 315px;
  opacity: 1;
  width:100%;
}

header nav ul li ul.subMenu li{
  opacity: 1;
  text-align: center;
}

header nav ul li ul.subMenu li a{
  color:#aaa;
}

header.expanded nav ul li a{
  color:#fff;
}


    #mobileLogo img{
      height: 17vh;
      margin-top:1vh;
      margin-bottom: 2vh;
      opacity: 0;
    }

    header.expanded #mobileLogo img{
      opacity: 1;
    }

    header.expanded #menu{
    }
    header.expanded #mobileMenuBox{
      background-color: #000;
      width: 100%;
    }

    .mobilemenu .line{
      width: 30px;
      height: 2px;
      background-color: #000;
      display: block;
      margin: 6px auto;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
    }

    .mobilemenu:hover{
      cursor: pointer;
    }

    header.expanded #mobilemenu .line, #mobilemenu.mmopen .line{
        background-color: #999;
    }

    #mobilemenu.mmopen{
      z-index: 10;
    }

    header.expanded #mobilemenu .line:nth-child(2), #mobilemenu.mmopen .line:nth-child(2){
      opacity: 0;
    }

    header.expanded #mobilemenu .line:nth-child(1), #mobilemenu.mmopen .line:nth-child(1){
      -webkit-transform: translateY(8px) rotate(45deg);
      -ms-transform: translateY(8px) rotate(45deg);
      -o-transform: translateY(8px) rotate(45deg);
      transform: translateY(8px) rotate(45deg);
    }

    header.expanded #mobilemenu .line:nth-child(3), #mobilemenu.mmopen .line:nth-child(3){
      -webkit-transform: translateY(-8px) rotate(-45deg);
      -ms-transform: translateY(-8px) rotate(-45deg);
      -o-transform: translateY(-8px) rotate(-45deg);
      transform: translateY(-8px) rotate(-45deg);
    }
    .condoleance div.condButtons div.condButton{
     /* width:40%;*/
    }
}

  /* MEDIA QUERIES */
@media (orientation: landscape) and (max-width: 1270px) and (max-height:512px){
  div.content_block.block_center.condoleance{
    width:100%;
    margin-left:0;
    margin-right:0;
  }
  .titleText{
    margin-left:5%;
  }

  div.contact_content .titleText{
    padding-bottom: 72px;
    width: 90%;
    margin-right: 5%;
  }
  .contact_content #phonebox{
    margin-top:72px;
  }
  .contactForm textarea{
    width:90%;
  }
  div.contact_content .centerTextBlock.contactMail a{
        margin-top: 24px;
  }
  div.store{
    width: 25%;
  }
  div.contact_content .staffMember{
    width:50%;
    float:left;
  }
  div.contact_content .titleFrontText{
    margin-bottom:36px;
  }
  .condoleance div.condButtons div.condButton{
    width: 35%;
  }
  .condoleance .titleText{
    margin-right: 0;
  }
  #page_slider{
    height: 50vh;
    width:100%;
    margin-left:0;
  }
   #page_slider .page_slider_img.first_slide, #page_slider .page_slider_img{
    height: 50vh;
  }
    #mobilemenu{
      right: 16px;
    }
    header svg.bLogo{
      left: 16px;
      height: 13vh;
    }
    #mobileLanguages{
      width: 50%;
      float: right;
      border-top: 0;
      right: 0;
    }
    #mobileLanguages p{
      text-align: right;
      width: 98%;
      margin-right: 2%;
    }
    header.expanded #mobileLogo{
      float: left;
      width: 30%;
      margin-left: 10%;
      margin-right: 10%;
    }
    header.expanded #mobileLogo img{
      width: 100%;
      max-height: 28vh;
      height: auto;
    }
    header.expanded nav ul li{
      height: 12vh;
      line-height: 12vh;
    }
    header #mobileLogo:after{
      top:65%;
    }
    header #mobileSocialIcons{
      width: 50%;
      float: right;
      right: 0;
    }
    header.expanded nav{
      width: 50%;
      float: left;
      left: 0;
      margin-top:33vh;
      transform: translate(0,0);
    }
    #mobileLivestream{
      display: inline-block;
    }
}



@media (min-width: 320px) and (max-width: 1270px) and (min-height: 412px) and (orientation:landscape) {
    header.expanded #mobileLogo{
      float:none;
    }
    div.moreFlowers{
      margin-top:0;
    }
    div.content_block .flowerItem img{
      width: auto;
      height: calc(100vh - 310px);
    }
    .condoleance div.condData{
      padding-bottom: 0;
    }
    div.content_block.block_center div.titleFrontText, div.contact_content .titleFrontText{
      text-align: inherit;
    }
    #mobileAanmelden, #mobileLivestream{
      display: none;
    }
    #aanmelden, #livestream{
      display: block;
    }
    header #menu #logo{
      display: none;
    }
    header nav ul li ul.subMenu{
      position: absolute;
      overflow: visible;
      width: 280px;
      padding: 12px 0px 0px 16px;
      transition: none;
    }
    div.contact_content .staffMember{
      width: 50%;
      float:left;
    }
    div.content_block.contact_content{
     /* padding-bottom:48px; */
    }
    div.store{
      width: 33%;
    }
    #extraButtons{
    /*    margin-right: -32px;
        position: relative;*/
    }
    .contactForm textarea{
      width: 100%;
    }
    header nav ul li ul.subMenu.expanded{
      height: auto;
      width: 280px;
      padding: 12px 0px 0px 16px;
    }
    header nav{
      left: 96px;
      opacity: 1;
      transform:none;
    }
    header svg.bLogo{
      height: 11vh;
      margin: 2vh;
    }
    header.mouseenter svg.bLogo{
      fill:#8d6b22;
      z-index: 10;
    }
    header nav ul li ul.subMenu li{
      text-align:left;
    }
    .titleFrontText {
      float: left;
      font-size: 64px;
      position: relative;
      color: #000;
      line-height: 64px;
      z-index: 1;
    }
    div.content_block.block_center div.titleFrontText, div.contact_content .titleFrontText{

    }
    .titleBackText{
        font-size: 137px;
      font-style: italic;
      color: #dedede;
      opacity: 0.3;
      position: absolute;
      float: left;
      /* top: 0px; */
      left: 64px;
      bottom: -38px;
    }
    header{
      height: 15vh;
    }
    #page_slider .page_slider_img.first_slide, #page_slider .page_slider_img{
      height: 50vh;
    }
    #page_slider{
      height: 50vh;
    }

}

@media (min-width: 481px) and (max-width: 1000px) and (orientation:landscape) {
  header #aanmeldbox_aanmelden{
    bottom:20vh;
  }
  header #close_aanmelden{
    bottom:20.5vh;
  }
  .livestreamButton{
    bottom:20vh;
    margin-top:0px;
  }
  header h1{
    font-size:32px;
  }
  #aanmeldbox_content input{
    margin-top:16px;
  }
  header .contentBox p{
    font-size:13px!important;
  }
  header nav ul li{
    font-size:12px;
  }
  header #aanmelden a, header #livestream a{
    font-size:12px;
  }
  header nav{
    margin-top: 5.5vh;
  }
  header #aanmelden, header #livestream{
    width: 96px;
  }
  #mobilemenu{
    top: calc(5vh - 2px);
  }
  header #aanmelden{
    right:170px;
    top:calc(5vh - 2px);
  }
  #mobileLivestream{
    display: none;
  }
  header #livestream{
    right:74px;
    top:calc(5vh - 2px);
  }
  header nav ul li ul.subMenu li{
      font-size:12px;
  }
  header nav ul li ul.subMenu{
    padding:0;
    overflow:hidden;
  }
  header nav ul li ul.subMenu.expanded{
    padding: 12px 0px 0px 16px;
    overflow:visible;
  }
  header.slidedown #livestream a, header.slidedown #aanmelden a{
    color:#000;
    transition: 800ms all linear;s
  }
}

@media (min-width: 481px) and (max-width: 767px) and (orientation:landscape){
  header nav{
    display: none;
    width: 100%;
  }
  header.mouseenter nav{
    opacity: 1;
    display: block;
  }
  header.mouseenter #menu #logo{
    top: auto;
    bottom: 16px;
  }
  header nav ul li ul.subMenu{
    position: absolute;
  }
  header.mouseenter #menu{
    height: 100vh;
  }
  header svg.bLogo{
    height: 8vh;
  }
  #mobileAanmelden{
    display: none;
  }
  header nav ul li ul.subMenu li{
    text-align:left;
  }
  header nav ul li{
    float:left;
  }
  header #aanmelden, header #livestream{
    display: none;
  }
  header.mouseenter #aanmelden, header.mouseenter #livestream{
    display: block;
  }
  header.mouseenter #extraButtons{
    position: fixed;
    width: 280px;
    height: 64Px;
    bottom: 16px;
    z-index: 10;
    left: 16px;
  }
  header.mouseenter #socialIcons{
     bottom: 24vh;
  }
  header.mouseenter #menu #logo{
    display: none;
  }
  #mobilemenu{
     top: 2vh;
  }
  .mobilemenu .line{
    width: 24px;
    height: 1px;
    margin: 5px auto;
  }
  header.expanded #mobilemenu .line:nth-child(3), #mobilemenu.mmopen .line:nth-child(3){
    margin: 9px auto;
  }
  header{
    height: 10vh;
  }
  body{
    padding-top: 10vh;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
    #mobileLivestream{
      display: inline-block;
    }
    header nav ul li ul.subMenu.expanded{
      height: auto;
    }
    header.expanded nav{
      overflow-y: scroll;
      height: auto;
      height: calc(100% - 23vh - 100px);
    }
}

@media (orientation:portrait){
   body{
    padding-top: 7Vh;
  }
  header{
    height: 7vh;
  }
  header svg.bLogo{
    height: 5vh;
  }
  #mobilemenu{
    top:calc(4vh - calc(33px / 2));
  }
  header nav ul li ul.subMenu.expanded{
      height: auto;
    }
  header.expanded nav{
      overflow-y: scroll;
      height: auto;
      height: calc(100% - 23vh - 100px);
  }
  #mobileLivestream, #mobileAanmelden{
    display: block;
  }
  div.content_block.block_right .titleText, div.content_block.block_left .titleText{
      margin-left: 10%;
      width: 80%;
      margin-right: 10%;
  }

  div#aanleveren, div#warmwelkom{
display: none;
  }

/*  header.mouseenter #menu #logo{
      transform: translateX(-50%);
      left:50%;    
  }*/
}
