#rccg-newgate-nav{
    background-color: var(--white);
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 16vh;
    border-bottom: 1.5px solid var(--green);
    z-index: 100;
}
#rccg-newgate-nav div a{
    text-decoration: none !important;
}
.rccg-newgate-logo{
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 15vh;
    min-width: 220px;
}
.rccg-newgate-logo img{
    width: 90px;
}
.rccg-newgate-logo h3{
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    color: var(--red);
}
.rccg-newgate-logo h4{
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    color: var(--blue);
}
.newgate-nav-links{
    display: flex;
    justify-content: space-around;
    width: 60%;
}
.newgate-nav-links li{
    list-style: none;
}
.newgate-nav-links a{
    color: var(--blue);
    text-decoration: none !important;
    font-weight: bold;
    font-size: 16px;
}
.newgate-nav-no-link-go-deeper{
    cursor: pointer;
}
.newgate-nav-sub-links-about,
.newgate-nav-sub-links-go-deeper{
    position: relative;
}
.newgate-nav-sub-links-about ul,
.newgate-nav-sub-links-go-deeper ul{
    position: absolute;
    background-color: var(--light-gray);
    margin-top: 5px;
    width: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    border-bottom: 1px solid var(--green);
     /* drop down */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}
.newgate-nav-sub-links-about ul{
    height: 210px;
    margin-left: -70px;
}
.newgate-nav-sub-links-go-deeper ul{
    height: 250px;
    margin-left: -53px;
}
.newgate-nav-sub-links-about li,
.newgate-nav-sub-links-go-deeper li{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newgate-nav-sub-links-about::before,
.newgate-nav-sub-links-go-deeper::before{
    content:'';
    position: absolute;
    background-color: var(--light-gray);
    width: 100%;
    height: 10px;
    top: 21px;
    opacity: 0;
}
.newgate-nav-sub-links-about li:hover,
.newgate-nav-sub-links-go-deeper li:hover{
    background-color: var(--dark-gray);
}
.newgate-nav-sub-links-about:hover ul,
.newgate-nav-sub-links-go-deeper:hover ul{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}
.newgate-nav-burger{
    display: none;
    cursor: pointer;
}
.newgate-nav-burger div{
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--blue);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1050px){
    .rccg-newgate-logo{
        min-height: 12vh;
        min-width: 200px;
    }
    .rccg-newgate-logo img{
        width: 73px;
    }
    .rccg-newgate-logo h3{
        font-size: 20px;
    }
    .rccg-newgate-logo h4{
        font-size: 18px;
    }
    .newgate-nav-links{
        width: 70%;
    }
    .newgate-nav-links a{
        font-size: 14px;
    }
    .newgate-nav-sub-links-about ul,
    .newgate-nav-sub-links-go-deeper ul{
        width: 180px;
    }
}

@media screen and (max-width: 992px){
    #rccg-newgate-nav{
        border-bottom: 1px solid var(--green);
    }
    .newgate-nav-links{
        background-color: var(--light-gray);
        position: absolute;
        left: -100%;
        top: 16vh;
        width: 100%;
        height: calc(100vh - 16vh);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all .5s;
    }
    .newgate-nav-links > li{
        opacity: 0;
    }
    .newgate-nav-sub-links-about ul{
        display: none;
    }
    .newgate-nav-sub-links-go-deeper{
        display: none;
    }
    .newgate-nav-burger{
        display: block;
    }
}

/* navigation animation - mobile view */
.newgate-nav-active{
    left: 0;
}

@keyframes newgateNavLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.newgate-nav-burger-rotate .burger-line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.newgate-nav-burger-rotate .burger-line2{
    opacity: 0;
}
.newgate-nav-burger-rotate .burger-line3{
    transform: rotate(45deg) translate(-5px,-6px);
}