.menu {
    max-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.menu ul {    
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu ul li {
    display: inline-block;
}

.menu ul li a {
    color: #454545;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; 
    padding: 0 15px;  
}

.menu ul li a:hover {
    opacity: 1;
}

body .container::after {
    -webkit-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    -moz-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    -ms-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    -o-transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    transition: all .5s cubic-bezier(1, 0.03, 0, 0.99);
    position: fixed;
    content: '';
    width: 50px;
    height: 50px;
    float: left;
    top: 3px;
    right: 10.1%;
    transform: scale(0);
    border-radius: 50%;
    z-index: 88;
    background: #ed1c24;
    background: -webkit-linear-gradient(left, #ed1c24 0%, #00e2fa 80%, #00e2fa 100%);
    background: linear-gradient(to right, #ed1c24 0%, #00e2fa 80%, #00e2fa 100%);
}

body.open-menu .container::after {
    transform: scale(0);
    opacity: 1;
    visibility: visible;
}

.hamburger-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 35px;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 60px;
    cursor: pointer;
    right: 0px;
    z-index: 89;
}

.bar,
.bar::after,
.bar::before {
    width: 40px;
    height: 3px;
}

.bar {
    position: relative;
    transform: translateY(25px);
    background: #FFF;
    transition: all 0ms 300ms;
    top: 6px;
}

.open-menu .hamburger-menu {
    position: fixed;
    top: 20px;
}

.open-menu header {
    width: 100%;
}

.bar.animate {
    background: rgba(255, 255, 255, 0);
}

.bar::before,
.bar::after {
    position: absolute;
    background: #FFF;
    content: '';
    left: 0;
}

.bar::before {
    bottom: 10px;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar::after {
    top: 10px;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate::after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate::before {
    top: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.content {
    position: relative;
    width: 100%;
    float: left;
}

.resize-message {
    margin: 40vh auto 0;
    display: table;
}

.resize-message span {
    text-transform: uppercase;
    text-align: center;
    display: block;
    color: #666;
}

.resize-message span i {
    font-size: 30px;
}

@media (max-width: 1199px) {
    body.open-menu .container::after {
        transform: scale(80);
        opacity: 1;
        visibility: visible;
    }

    .container {
        width: 970px;
    }

    .menu ul li a {
        font-size: 16px;
        display: table;
        margin: 0;
        padding: 0 8px;
    }
}

@media (max-width: 1024px) {
    .container {
        width: 750px;
    }

    .hamburger-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        position: unset;
        margin: inherit;
    }

    .logo {
        z-index: 99;
    }

    .menu {
        max-height: inherit;
        height: 100%;
        align-items: flex-start;
    }

    .menu ul {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        padding: 0;
        position: fixed;
        margin: 20vh auto 0;
        list-style: none;
        display: table;
        left: 50px;
        right: 0;
        width: 270px;
    }

    body.open-menu .menu ul {
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
        visibility: visible;
        opacity: 1;
        left: 0;
    }

    .menu ul li {
        width: 100%;
        float: left;
    }
    
    .open-menu .bar::after,
    .open-menu .bar::before {
        background: #fff;
    }

    .open-menu .logo {
        padding: 5px;
    }

    .hamburger-menu {
        height: 0;
    }

    .bar {
        top: -10px;
        background: #ed1c24;
    }

    .bar::before, .bar::after {
        background: #ed1c24;
    }

    .bar, .bar::after, .bar::before {
        width: 25px;
        height: 2px;
    }

    .bar::before {
        bottom: 6px;
    }

    .bar::after {
        top: 6px;
    }

    .menu ul li a {
        padding: 10px 0px;
        text-align: center;
        color: #fff;
        font-size: 20px;
        display: block;
    }
}

@media (max-width: 1024px) {
    body .container::after {
        background: -webkit-linear-gradient(left, #ED1C24 0%, #CD1C22 80%, #CD1C22 100%);
        background: linear-gradient(to right, #ED1C24 0%, #CD1C22 80%, #CD1C22 100%);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }

    body .container::after {
        top: 3px;
        right: 11px;
    }
}