.open-menu {
    position: fixed;
    cursor: pointer;
    z-index: 1002;
    right: 30px;
    top: 25px;
    font-family: 'gotham';
}

.open-menu .line {
    display: block;
    height: 4px;
    width: 30px;
    background-color: #ec1c24;
    margin: 5px auto;
    
    transition: all 0.3s ease-in-out;
    transform-origin: 50% 50%;
}

.open-menu .line:nth-child(1) {
    width: 20px;
    background-color: #ec1c24;
    margin: 0 auto 0 0;
}

.open-menu .line:nth-child(3) {
    width: 20px;
    background-color: #ec1c24;
    margin: 0 0 0 auto;
}

.open-menu:hover .line {
    width: 30px;
}

.open-menu.active {
    transform: rotate(45deg);
    transform-origin: center center;
    transition: all 0.2s ease-in-out 0.4s;
}

.open-menu.active .line {
    background-color: #ec1c24;
}

.open-menu.active .line:nth-child(2) {
    width: 0px;
}

.open-menu.active .line:nth-child(1) {
    transform: translateY(13px);
    transition-delay: 0.2s;
    width: 30px;
}

.open-menu.active .line:nth-child(3) {
    transform: translateY(-6px) rotate(88deg);
    transition-delay: 0.2s;
    width: 30px;
}

.overlay {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    /* background: #ffffff;
    background: rgb(246, 204, 255);
    background: linear-gradient(180deg, rgba(246, 204, 255, 1) 0%, rgba(1, 192, 229, 1) 100%);*/
    overflow: hidden;
    transition: height 0.3s ease-out;
    font-family: ''Rubik', sans-serif';
    background-image: url(../images/menu-bg.jpg);
    background-size: cover;
}

.overlay.open {
    height: 100vh;
}

.overlay--menu {
    padding-top: 90px;
    position: relative;
    width: 100%;
    text-align: right;
    padding-right: 35px;
}

/*.overlay--menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 2.5rem;
    line-height: normal;
}*/

.overlay--menu li {
    padding-left: 0;
    position: relative;
    opacity: 0;
    color: #000;
    transform: translateY(50px);
    transition-duration: 0.2s;
    text-transform: uppercase;
}

/*.overlay--menu li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #FF3895;
    transition: width .3s;
    position: relative;
    top: -8px;
}

.overlay--menu li a:hover::after {
    width: 100%;
    transition: width .3s;
}*/

.overlay--menu li a {
    display: inline-block;
    transition: 0.5s ease-in-out;
    color: #ffffff;
    line-height: normal;
}

.overlay--menu li a:hover {
    text-decoration: none;
    color: rgb(255, 238, 0);
}

.overlay--menu li a i {
    font-size: 18px;
    transition: 0.5s ease-in-out;
}

.overlay.open li {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s 0.2s ease-out;
}

.overlay.open li:nth-of-type(2) {
    transition-delay: 0.3s;
}

.overlay.open li:nth-of-type(3) {
    transition-delay: 0.4s;
}

.overlay.open li:nth-of-type(4) {
    transition-delay: 0.5s;
}

.overlay.open li:nth-of-type(5) {
    transition-delay: 0.6s;
}

.overlay.open li:nth-of-type(6) {
    transition-delay: 0.7s;
}

.overlay.open li:nth-of-type(7) {
    transition-delay: 0.8s;
}

.overlay.open li:nth-of-type(8) {
    transition-delay: 0.9s;
}

.overlay.open li:nth-of-type(9) {
    transition-delay: 1s;
}

.overlay.open li:nth-of-type(10) {
    transition-delay: 1.1s;
}

.overlay.open li:nth-of-type(11) {
    transition-delay: 1.2s;
}

.overlay--menu li a.submenuarrow i {
    transform: rotate(180deg);
    transition: 0.5s ease-in-out;
}

/*new menu design start*/
.accordion {
    width: 100%;
    max-width: 366px;
    margin: 0 0 0 auto;
    background: transparent;
    list-style: none;
}

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 5px 0px 5px 42px;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #fff;
    
    line-height: 32px;
}

.accordion .link:hover {
    color: #e5ff88;
}

.accordion li:last-child .link {
    border-bottom: 0;
}

.accordion li i {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 18px;
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
    right: -20px;
    left: auto;
    font-size: 16px;
}

.accordion li.open .link {
    color: #93e8fd;
}

.accordion li.open i {
    color: #bdf2ff;
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion .link:hover i {
    color: #ffd484;
}

/**
 * Submenu
 -----------------------------*/

.pr-25 {
    padding-right: 25px !important;
}

.submenu {
    font-size: 17px;
    list-style: none;
    display: none;
    border-right: 1px #fff solid;
}

.submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    padding: 2px 12px;
    padding-left: 42px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.submenu a:hover {
    background: transparent;
    color: #FFF;
}

/*new menu design end*/

@media only screen and (max-width: 991px) {
    .overlay {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-out;
        font-family: ''Rubik', sans-serif';
        background-image: none;
        background-size: inherit;
        background: rgb(246, 204, 255);
        background: linear-gradient(180deg, rgb(12 66 138) 0%, rgb(0 155 223) 100%) !important;
    }

    .overlay .bird-container {
        display: none;
    }

    .sunmenu {
        position: absolute;
        left: 8vw;
        top: 5vh;
        width: 22vw;
        z-index: 15;
        opacity: 1;
    }

    .apmenu {
        position: absolute;
        width: 29vw;
        left: 5vw;
        bottom: 26vh;
        z-index: 1;
    }
}