@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: rgb(102,92,164);
    background: linear-gradient(170deg, rgb(102,92,164) 5%,  rgba(233,103,100,1) 30%, rgba(238,206,65,1) 80%);
    overflow-x: hidden;
}
/*background: linear-gradient(153deg, rgba(102,92,164,1) 0%, rgba(233,103,100,1) 54%, rgba(238,206,65,1) 96%);*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 12;
}

header::after{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    width: 100vw;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.70), transparent);
    z-index: 10
}

.menu {
    z-index: 11;
    position: absolute;
    top: 25px;
    left: 25px;
    background: transparent;
    border: 2px solid rgb(250, 250, 250);
    display: flex;
    flex-direction: row;
    width: fit-content;
    padding: 12px;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    color: rgb(250, 250, 250);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.75);
    cursor: pointer;
    transition: transform 150ms ease-in-out;
}

.menu p {
    margin-left: 15px;
}

.menu:hover {
    transform:rotate(3deg);
}

.logo {
    /*width: 175px;
    height: 125px;*/
    /*background: linear-gradient(153deg, rgba(233,103,100,1) 15%, rgba(238,206,65,1) 100%);*/
    /*background: rgb(250, 250, 250);*/
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%);
    z-index: 11;
    border-radius: 0 0 25px 25px;
    /*
    border-bottom: solid 2px white;
    border-left: solid 2px white;
    border-right: solid 2px white;*/
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.75);*/
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 140px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    transition: transform 150ms ease-in-out;
    margin-bottom: 10px;
    margin-top: 16px;
    padding-left: 12px;
    padding-right: 12px;
}

.logo img:hover {
    transform: scale(1.1);
}

.logo p {
    font-size: 44px;
    text-transform: uppercase;
    font-weight: 900;
    color: rgb(250, 250, 250);
    cursor: default;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.info {
    position: absolute;
    right: 25px;
    top: 20px;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.info-top {
    display: flex;
    flex-direction: row;
}

.info p {
    background: transparent;
    border: 2px solid rgb(250, 250, 250);
    margin-bottom: 8px;
    font-size: 14px;
    width: fit-content;
    text-align: right;
    padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 8px;
    border-radius: 4px;
    font-weight: 500;
    color: rgb(250, 250, 250);
    cursor: default;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.invisible {
    display: none;
}

.burger-menu {
    width: 100%;
    min-height: 650px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(170deg, rgba(102,92,164,1) 0%, rgba(233,103,100,1) 45%, rgba(238,206,65,1) 96%);
    transform: translateY(-100%);
    transition: transform 150ms ease-in-out;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.burger-menu img {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0.3;
    filter: blur(5px);
}

.burger-menu-container {
    max-width: 800px;
    margin-left: 10%;
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.burger-menu-container-column {
    z-index: 12;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    padding: 2px;
    line-height: 42px;
    color: rgb(250, 250, 250);
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
}

.burger-menu-container-title{
    color: rgba(238,206,65,1);
    margin-bottom: 0px;
}

.burger-menu-container-option p{
    cursor: pointer;
    width: fit-content;
}

.burger-menu-container-option p:hover {
    border-bottom: 3px solid rgb(250, 250, 250);
}

.active-route {
    border-bottom: 3px solid rgb(250, 250, 250);
}

.burger-menu-container-option a {
    text-decoration: none;
    color: rgb(250, 250, 250);
}



.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-bottom: 72px;
    background-color: black;
}

.banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner::after {
    content: '';
    position: absolute;
    margin-top: -7px;
    display: block;
    width: 100vw;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    z-index: 10
}

.title {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%);
    width: max-content;
    cursor: default;
    color: rgb(250, 250, 250);
    text-align: center;
}
.days {
    font-size: 100px;
    font-weight: 800;
    margin-bottom: -25px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.75));
}

.month {
    font-size: 60px;
    font-weight: 800;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.75));
}

.monthIcon a {
    text-decoration: none;
    color: rgb(250, 250, 250);
}

.monthIcon i {
    font-size: 60px;
    line-height: 70px;
    transition: ease-in-out .1s;
}

.monthIcon i:hover {
    font-size: 70px;
}

.monthExtra {
    margin-top: 80px;
    font-size: 50px;
    font-weight: 800;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.75));
}



.arrow-down {
    text-decoration: none;
    color: rgb(250, 250, 250);
    font-size: 75px;
}

.arrow-down i {
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.75));
    transition: transform 150ms ease-in-out;
}
.arrow-down i:hover {
    transform: scale(1.1);
}

.welcome {
    position: relative;
    color: rgb(40, 36, 66);
    min-height: 600px;
}
.welcome-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 100;
}
.welcome h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.welcome p {
    width: 45%;
    font-size: 20px;
}

.welcome img {
    z-index: 10;
    position: relative;
    top: -280px;
    left: 50%;
    transform: translate(-50%);
    width: 450px;
    filter: invert(44%) sepia(58%) saturate(460%) hue-rotate(295deg) brightness(94%) contrast(78%);
}

.card-container {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 10;
    margin-bottom: 100px;
}

.card-container-title {
    position: absolute;
    text-transform: uppercase;
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    font-size: 32px;
    transform: translateY(-48px);
    cursor: default;
}

.card-container-subtitle {
    margin-bottom: 8px;
    color: rgba(238,206,65,1);
    text-transform: uppercase;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    text-align: center;
}

.card-inner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cardholder {
    position: relative;
    display: block;
    width: 400px;
    height: 316px;
    margin: 20px;
    overflow: hidden;
    transition: transform 150ms ease-in-out;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 25px;
}

.cardholder img {
    z-index: 12;
    overflow: hidden;
    object-fit: fill;
    transition: transform 330ms ease-in-out;
    width: 100%;
}

.cardholder-righttilt:hover {
    transform:rotate(1deg);
}

.cardholder-lefttilt:hover {
    transform:rotate(-1deg);
}

.card {
    position: relative;
    display: block;
    width: 380px;
    height: 380px;
    margin: 20px;
    overflow: hidden;
    transition: transform 150ms ease-in-out;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.card img {
    z-index: 12;
    overflow: hidden;
    object-fit: fill;
    transition: transform 330ms ease-in-out;
    width: 100%;
}

.card-icon {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgb(250, 250, 250);
    z-index: 13;
    font-size: 24px;
    transform: rotate(30deg);
}

.card-datetime {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    color: rgb(250, 250, 250);
    z-index: 13;
    font-weight: 700;
    text-transform: uppercase;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    font-size: 20px;
    line-height: 20px;
}

.card-date {
    width: 90px;
}

.card-time {
    text-transform: none;
}

.card-title {
    width: 100%;
    height: 75px;
    z-index: 13;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(153deg, rgba(102,92,164,1) 0%, rgba(233,103,100,1) 54%, rgba(238,206,65,1) 110%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title p {
    text-transform: uppercase;
    color: rgb(250, 250, 250);
    font-weight: 700;
    font-size: 32px;
    transform: translateY(-8px);
}

.card-title p::before {
    content: attr(data-text);
    position: absolute;
    transform-origin: bottom;
    transform: rotateX(180deg);
    line-height: 32px;
    background: linear-gradient(0deg, #fff, transparent, 80%);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.3;
}

.card-title-smaller p{
    font-size: 24px;
}

.card-title-smaller p::before{
    line-height: 24px;
}
/*
.card-1 img {
    width: 100%;
}

.card-2 img {
    height: 100%;
}

.card-3 img {
    height: 85%;
    transform: translateX(-50px);
}

.card-4 img {
    width: 100%;
}

.card-5 img {
    width: 100%;
    transform: translateY(-50px);
}

.card-6 img {
    width: 100%;
    transform: translateY(-50px);
}
*/
.card:hover .card-image {
    transform: scale(1.25);
}

.bottom {
    position: relative;
    width: 100%;
    height: fit-content;
    margin-bottom: -8px;
}

.bottom img {
    width: 100%;
    height: 100%;
}

footer {
    position: relative;
    width: 100%;
    height: 700px;
    /*background: rgb(12,74,25);
    background: linear-gradient(113deg, rgba(12,74,25,1) 0%, rgba(121,139,39,1) 100%);*/
}

footer img {
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.footer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 10%;
    padding-right: 10%;
    cursor: default;
    padding-bottom: 32px;
}

.copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(250, 250, 250);
    font-size: 12px;
    margin-top: 8px;
}

.copyright-part{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 8px;
}

.copyright-part p {
    padding-left: 12px;
    padding-right: 12px;
}

.copyright-part a {
    text-decoration: none;
    color: rgb(250, 250, 250);
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    text-align: start;
    color: rgb(250, 250, 250);
}

.footer-contact-content {
    font-size: 12px;
}

.footer-contact-content a {
    text-decoration: none;
    color: rgb(250, 250, 250);
}

.footer-contact-content i {
    font-size: 24px;
    margin-right: 12px;
}



/* Modal */

.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.invisible {
    display: none;
}

.modal-content {
    background: linear-gradient(170deg, rgba(102,92,164,1) 0%, rgba(233,103,100,1) 45%, rgba(238,206,65,1) 96%);
    margin: auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    width: 1000px;
    height: 500px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    display: flex;
    flex-direction: row;
}


.modal-content-image {
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    padding-left: 30px;
    transform: rotate(-2deg);
    z-index: 1001;
}

.modal-content-image img {
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    width: 450px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.modal-content-text {
    width: 500px;
    height: 500px;
    display: flex;
    padding-left: 60px;
    padding-top: 20px;
    flex-direction: column;
    z-index: 1001;
}

.modal-content-text-title {
    text-transform: uppercase;
    color: rgba(238,206,65,1);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    cursor: default;
    font-size: 30px;
}

.modal-content-text-description {
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    cursor: default;
    font-size: 16px;
}

.modal-content-background img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
    filter: blur(5px);
    z-index: 1000;
}


.close {
    z-index: 100000;
    position: absolute;
    right: 25px;
    top: 20px;
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    text-decoration: none;
    cursor: pointer;
}


/* Line-Up */

.line-up-info {
    margin-top: 100px;
    margin-bottom: 124px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-up-info-text {
    width: 60%;
    text-align: center;
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.75));
}

.line-up-info-text h2 {
    margin-bottom: 24px;
}

.spacer {
    height: 72px;
}

.spacer-timetable {
    height: 0px;
}


/*Timetable*/

.timetable-options-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 150px;
    margin-bottom: 72px;
}

.timetable-options {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    color: rgb(250, 250, 250);
    font-size: 24px;
    font-weight: 700;
}

.timetable-option {
    padding: 12px;
    margin: 24px;
    border: 2px solid rgb(250, 250, 250);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 150ms ease-in-out;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.75);
}

.timetable-option:hover {
    transform:rotate(3deg);
}

.timetable-option-active {
    background-color: rgb(250, 250, 250);
    color: rgba(233,103,100,1);
    cursor: default;
}

.timetable-option-active:hover {
    transform: none;
}

.timetable-container {
    width: 40%;
    color: rgb(250, 250, 250);
    text-transform: uppercase;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
}

.timetable-container-section-yellow {
    color: rgba(238,206,65,1);
}

.timetable-container-section-title, .timetable-container-section-artist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dotted {
    margin: 0 auto;
    position: relative;
}

.dotted:before {
    content: '';
    position: absolute;
    bottom: 0.2rem;
    width: 100%;
    height: 0;
    border-bottom: 2px dotted;
}

/* comedy */

.comedy-main-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.comedy-main-container p {
    text-align: center;
}

.buy-tickets-container {
    display: flex;
    flex-direction: row;
    text-transform: uppercase;
    color: rgb(250, 250, 250);
    font-size: 24px;
    font-weight: 700;
}

.buy-tickets-link {
    text-decoration: none;
    color: rgb(250, 250, 250);
}

.buy-tickets-button {
    padding: 12px;
    margin: 24px;
    border: 2px solid rgb(250, 250, 250);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 150ms ease-in-out;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.75);
}

.buy-tickets-button:hover {
    transform:rotate(3deg);
}


/* sponsors */

.sponsor-container {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 10;
    margin-bottom: 100px;
    
}

.sponsor-container-title {
    position: absolute;
    text-transform: uppercase;
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    font-size: 32px;
    transform: translateY(-48px);
    cursor: default;
}

.sponsor-container-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
}

.sponsor-container-text {
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    cursor: default;
    font-size: 24;
    font-weight: 100;
}

.sponsor-card-inner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 48px;
}

.sponsor-card-inner-container-biggest {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sponsor-card-inner-container-biggest-section {
    display: flex;
    flex-direction: row;
}

.sponsor-card-inner-container-smallest {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sponsor-card {
    position: relative;
    display: block;
    width: 190px;
    height: 190px;
    margin: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /*
    background-color: white;
    transition: transform 150ms ease-in-out;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);*/
}

.sponsor-card-big {
    width: 330px;
    height: 330px;
    transition: transform 150ms ease-in-out;
    
}

.sponsor-card:hover {
    transform: scale(1.03);
}

.sponsor-card-white {
    background-color: #fff;
}

.sponsor-card-brokenwhite {
    background-color: #fbfbfb;
}

.sponsor-card-darkgreen {
    background-color: #056839;
}


.sponsor-card-black {
    background-color: #040404;
}

.sponsor-card-black-orange {
    background-image: linear-gradient(to bottom,  #222320 50%, #D56730 50%);
}


.sponsor-card-grey {
    background-color: #363636;
}

.sponsor-card-darkgrey {
    background-color: #231F20;
}

.sponsor-card-very-darkgrey {
    background-color: #1a1a1a;
}

.sponsor-card-darkblue {
    background-color: #08014c;
}

.sponsor-card-white-green {
    background-image: linear-gradient(to bottom,  #fff 50%, #009c4d 50%);
}

.sponsor-card-olive {
    background-color: #7ab69a;
}

.sponsor-card-brown {
    background-color:#342111
}

.sponsor-card-purple {
    background-color:#673189
}

.sponsor-card-lime {
    background-color:#a2d40a
}

.sponsor-card-blue {
    background-color:#55adfc
}

.sponsor-card-groendecor {
    background-color:#231f20
}

.sponsor-card img {
    z-index: 12;
    overflow: hidden;
    object-fit: fill;
    /*transition: transform 330ms ease-in-out;*/
    width: 100%;
}

.sponsor-card-small-img img {
    width: 85%;
}

/* tropical terras */

.tropical-info{
    width: 100%;
    padding-top: 150px;
    display: flex;
    justify-content: center;
}

.tropical-info-text{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    text-align: center;
    cursor: default;
}

.tropical-info-text p {
    margin-bottom: 24px;
    
}

.tropical-info-title{
    text-align: center;
    margin-bottom: 24px;
    font-size: 32px;
    text-transform: uppercase;
}

.tropical-info-subtitle {
    margin-bottom: 8px;
    color: rgba(238,206,65,1);
    text-transform: uppercase;
}

.terras-card {
    cursor: default;
}

/* info */

.info-main-container {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.info-container-title {
    position: absolute;
    text-transform: uppercase;
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    font-size: 32px;
    transform: translateY(-48px);
    cursor: default;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    height: fit-content;
    cursor: default;
}

.info-container-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    text-align: center;
    cursor: default;
}

.info-item {
    width: 300px;
    text-align: center;
    margin: 32px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-item-title {
    color: rgba(238,206,65,1);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    font-size: 24px;
    margin-bottom: 12px;
}

.info-item-content {
    color: rgb(250, 250, 250);
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
    font-size: 18px;
}

@media all and (max-width: 1080px) {
    
    .info {
        right: 15px;
        top: 72px;
    }
    
    .info-top {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .info p {
        margin-bottom: 4px;
        font-size: 8px;
        padding: 2px;
        padding-left: 4px;
        padding-right: 4px;
        margin-left: 4px;
    }

    .menu {
        top: 72px;
        left: 15px;
        padding: 6px;
        font-size: 16px;
    }
    
    .menu p {
        margin-left: 10px;
    }

    .logo {
        top: 10px;
        border-radius: 0 0 15px 15px;
    }
    
    .logo img {
        width: 100px;
        margin-bottom: 10px;
        margin-top: 16px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo p {
        font-size: 30px;
    }

    .burger-menu{
        min-height: 100vh;
        max-height: 200vh;
        overflow: auto;
        height: max-content;
    }

    .burger-menu-container{
        flex-direction: column; 
    }

    .burger-menu-container-column{
        font-size: 24px;
        line-height: 26px;
        padding: 8px;
    }

    .banner {
        margin-bottom: 50px;
    }

    .days {
        font-size: 50px;
        margin-bottom: -15px;
    }
    
    .month {
        font-size: 30px;
    }

    .monthIcon i {
        font-size: 40px;
    }

    .monthIcon i:hover {
        font-size: 45px;
    }

    .monthExtra {
        margin-top: 100px;
        font-size: 25px;
    }
    
    .arrow-down {
        text-decoration: none;
        color: rgb(250, 250, 250);
        font-size: 50px;
    }

    .welcome {
        min-height: 100px;
        padding-top: 50px;
    }
    .welcome h2 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 24px;
    }
    
    .welcome p {
        width: 70%;
        font-size: 16px;
    }
    
    .welcome img {
        width: 380px;
    }
    
    .card {
        width: 320px;
        height: 320px;
        margin: 20px;
    }
    
    .card-title p {
        font-size: 30px;
    }
    
    .card-title p::before {
        line-height: 30px;
    }

    .card-title-smaller p{
        font-size: 20px;
    }
    
    .card-title-smaller p::before{
        line-height: 20px;
    }
    
    .copyright {
        bottom: -100px;
        font-size: 12px;
    }

    .timetable-options-container {
        margin-top: 160px;
    }
    
    .timetable-options {
        font-size: 10px;
    }
    
    .timetable-option {
        padding: 4px;
        margin: 4px;
    }

    .timetable-container {
        width: 90%;
    }

    footer {
        height: 350px;
    }

    .footer-content {
        flex-direction: column;
        justify-content: end;
        align-items: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        text-align: center;
        color: rgb(250, 250, 250);
    }

    .copyright {
        font-size: 10px;
    }

    .modal-content {
        width: 340px;
        height: 680px;
        flex-direction: column;
    }

    .modal-content-image {
        width: 300px;
        height: 280px;
        padding-bottom: 0px;
        padding-left: 20px;
        transform: rotate(2deg);
    }

    .modal-content-text {
        width: 300px;
        height: 360px;
        padding-left: 10px;
        padding-top: 0px;
    }

    .modal-content-text-title {
        font-size: 24px;
    }

    .modal-content-text-description {
        font-size: 14px;
    }
    
  }

  @media all and (max-width: 720px) {

    footer{
        height: 150px;
    }

    .info-container {
        margin-bottom: 50px;
    }
    .sponsor-card {
        width: 140px;
        height: 140px;
        margin: 8px;
    }
    .sponsor-card-big {
        width: 300px;
        height: 300px;
    }
    .sponsor-card-inner-container {
        max-width: none;
    }
    .sponsor-card-inner-container-biggest-section {
        flex-direction: column;
    }
    .cardholder {
        width: 333px;
        height: 263px;
    }

    .spacer-timetable {
        height: 250px;
    }

  }


  .filler {
    width: 80vw;
    height: 0vh;
    }

  @media all and (max-width: 1100px) {
    .filler {
    width: 80vw;
    height: 55vh;
    }
}

embed {
    width: 100%;
    height: 100vh;
    z-index: 100 !important;
    display: table-row;
}


.vrienden-main-container {
    
    display: flex;
    justify-content: center;
    text-align: center;
}

.vrienden-main-container-content {
    width: 40%;
    text-align: center;
}

.vrienden-main-container-title{
}

.vrienden-container-vriend-text {
    color: white;
}

.vrienden-container-text-up {
    text-transform: uppercase;
}

@media all and (max-width: 600px) {
    .vrienden-main-container-content {
        width: 80%;
    }   
    .vrienden-main-container-content{
        margin-top: 32px;
    }
}