.openBurgerMenu {
    position: sticky;
    position: -webkit-sticky;
    top: 0; /* required */
    z-index: 5;
    background-color: #8C0327;
    margin: unset;
    padding: 15px;
    padding-left: unset;
    padding-right: unset;
}

.openBurgerMenu a, .openBurgerMenu span {
    padding: 15px;
    padding-left: 3px;
    padding-right: 3px;
    margin: unset;
    transition: all 2.5s ease-out;
    -webkit-transition: all 2.5s ease-out;
}

.openBurgerMenu a:hover, .openBurgerMenu span:hover, .openBurgerMenu a:active, .openBurgerMenu span:active {
    background-color: #d81143;
}

.burgerMenu {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 5; /* z-index of navMenu */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #40011E;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.burgerMenu ul li {
    font-family: 'Montserrat';
    text-decoration: none;
    font-size: 25px;
    color: #F2C5BB;
    display: block;
    transition: 0.3s;
}

.burgerMenu ul li a i {
    padding: unset;
    margin: unset;
}

.burgerMenu ul li:hover, .burgerMenu ul li:active  {
    color: #f1f1f1;
}

.burgerMenu .closeBurgerMenu {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .burgerMenu {padding-top: 15px;}
    .burgerMenu ul li {font-size: 18px;}
}

@media all and (max-width: 440px) {
    .menu { display: none;}
    .openBurgerMenu { display: inline;}
}