/* BUTTON NAV STARTS */

#buttons-nav {
    position: fixed;
    right: 170px;
    top: 50px;
    z-index: 1000;
}

#buttons-nav a{
    text-decoration: none;
}

#buttons-nav p {
    display: inline;
    font-family: helvetica;
    font-weight: 200;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    transition: 0.5s;
}


#nav-program, #nav-schedule {
    border-radius: 100px;
    color: #15609C;
    margin-left: 20px;
}

#nav-program:hover, #nav-schedule:hover{
    background-color: #15609C;
    color: #cebedd;
}

#nav-billetter {
    margin-left: 20px;
    border-radius: 100px;
    color: #15609C;
}

#nav-billetter:hover{
    background-color: #15609C;
    color: #cebedd;
}

.button-nav-scroll {
    background-color: #cebedd;
}

@media only screen and (max-width: 768px) {

#buttons-nav {
    display: none !important;
}
    
}

/* BUTTON NAV ENDS */

/* LOGO STARTS*/

#logostatic {
    position: fixed;
    top: 50px;
    left: 40px;
    background-color: none;
    height: 25px;
    width: 300px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 99;
    transition: 1s;
}

#logocircle {
    height: 55px;
    width: 55px;
    border-radius: 100px;
    position: fixed;
    top: 35px;
    left: 25px;
    background-color: #15609C;
    opacity: 0;
    transition: 1s;
    z-index: 999;
}

#logocontainer {
    height: 40px;
    width: 300px;
    position: fixed;
    top: 47.5px;
    left: 40.5px;
    background-color: none;
    opacity: 0;
    transition: 1s;
    pointer-events: none;
    z-index: 1000;
}

.logoelements{
    position: absolute;
    margin: 0px;
    padding: 0px;
    background-color: #e837f6;
    transition: 1s;
}

#logoelm1 {
    height: 27px;
    width: 5px;
}

#logoelm2 {
    height: 5px;
    width: 45px;
    top: 11px;
}

#logoelm3 {
    height: 27px;
    width: 5px;
    left: 150px;
}

.logoslide1 {
    left: 18px !important;
}

.logoslide2 {
    width: 14px !important;
}

.logoshow {
    opacity: 1 !important;
}

.logohide {
    opacity: 0 !important;
}

/* LOGO ENDS  */

/* BUGERMENU STARTS */

.burgercontainer {
    position: fixed;
    top: 40px;
    right: 30px;
    height: 40px;
    width: 40px;
    background-color: #15609C;
    cursor: pointer;
    border-radius: 100px;
    z-index: 999;
}

.burgerlines {
    position: absolute;
    height: 2px;
    width: 24px;
    margin-left: 7.5px;
    border-radius: 10px;
    background-color: #cebedd;
    margin-top: 5px;
    transition: 0.5s;
    
}

#burgerl1 {
    top: 8px;
}

#burgerl2 {
    top: 14px;
}

#burgerl3 {
    top: 20px;
}

@media only screen and (min-width: 600px) {
    .burgercontainer:hover #burgerl1 {
        transform: rotate(90deg);
        top: 13px;
    }

    .burgercontainer:hover #burgerl2 {
        display: none;
    }

    .burgercontainer:hover #burgerl3 {
        top: 13px;
    }
}

.menuwindow {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    width: 100vw;
    height: 100%;
    background: #cebedd;
    background-image: url("https://heartlandfestival.dk/wp-content/uploads/2021/05/wp-content_2022_menu-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
    animation: 0.5s ease 0s 1 slideInFromLeft;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

#myDIV {
    display: none;
}

.burgercontainer2 {
    position: fixed;
    top: 40px;
    right: 30px;
    height: 40px;
    width: 40px;
    background-color: #15609C;
    cursor: pointer;
    border-radius: 100px;
    z-index: 1001;
    opacity: 1;
    animation: 1s ease 0s 1 rotateClose;
    animation-fill-mode: forwards;
}

@keyframes rotateClose {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}

#burgerl12 {
    position: absolute;
    left: 19.2px;
    top: 9px;
    width: 2px;
    height: 23px;
    background-color: #cebedd;
}

#burgerl22 {
    position: absolute;
    left: 9px;
    top: 18.5px;
    width: 23px;
    height: 2px;
    background-color: #cebedd;
}

#rotateburger {
    display: none;
}

/* BUGERMENU ENDS */
