﻿/*#region destop navigation*/
    #sectionTopNav {
       /*
           background: rgb(204,204,204);
            background: radial-gradient(circle, rgba(204,204,204,1) 0%, rgba(247,247,247,1) 100%);
        */
        background: #FFF;
        color: var(--primary);
        overflow: hidden;
        border-bottom: 1px solid #CCC;
    }

    #topNavNavigation {
        text-align: right;
        padding-right: 5rem;
    }

    #topNavLogo {
        padding: 2rem 4rem;
    }
    #mainSocialFeed {
        padding: 1rem .75rem 1rem .75rem;
        font-size: 1.25rem;
        font-weight: 700;        
    }

    #mainSocialFeed a {
        color: var(--darkGray);
        padding-bottom: 1.5rem;
        line-height: 1rem;
        text-transform: uppercase;
    }
    .utlNav {
        font-size: 1rem;
        text-transform: capitalize !important;
        color: var(--darkGray) !important;
    }
    .utlNav:hover, #mainSocialFeed a:hover {
        color: var(--primary) !important;
    }
    #mainNavigation {
        font-family: var(--fontPrimary);
        font-size: 1.45rem;
        font-weight: 700;
    }
    #mainNavigation ul {
        list-style: none;
        width: 100%;
        height: 100%;
    }

    #mainNavigation ul li {
        display: inline-block;
        text-align: center;
        line-height: 1.25rem;
        padding: .5rem 1.5rem;
    }

    #mainNavigation ul li a {
        color: var(--secondary);
        padding-bottom: 1.75rem;
        line-height: 2rem;
        text-transform: uppercase;
    }
    #mainNavigation ul li a:hover {
        color: var(--primary);
    }

        

    #mainNavigation ul li a::after {
        display: block;
        content: '';
        border-bottom: solid 2px var(--accent);
        transform: scaleX(1);
        transition: transform .25s ease-in-out
    }

    #mainNavigation ul li a:hover::after {
        transform: scaleX(0)
    }


/*#endregion*/
/*#region scroll*/
    #scrollDesktopMenu, #scrollDesktopMenuMobile {
        height: 0;
        background-color: rgba(255,255,255,1);
        width: 100%;
        left: 0;
        top: 0;
        position: fixed;
        overflow: hidden;
        z-index: 1000;
        border-bottom: 1px solid var(--secondary);
    }

    #scrollDesktopMenu {
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,.5);
        -moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
        box-shadow: 0 0 10px rgba(0,0,0,.5);
        transition: all 1s;
        padding: 0 2rem;
    }

    #scrollDesktopMenuMobile {
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,.5);
        -moz-box-shadow: 0 0 10px rgba(0,0,0,.5);
        box-shadow: 0 0 10px rgba(0,0,0,.5);
        transition: all .2s;
        border-bottom: 1px solid #FFF;
        display: none
    }

    #scrollDesktopMenu img {
        padding-top: 1rem;        
    }

    #scrollDesktopMenuMobile img {
        width: 175px;
        margin: .75rem
    }

    #scrollDesktopMenu ul {
        list-style: none;
        text-align: right;
        padding: 1rem 1rem 0
    }

    #scrollDesktopMenu ul li {
        display: inline-block;
        padding: 0 1rem
    }

    #scrollDesktopMenu ul li a {
        color: var(--primary);
        font-size: 1.25rem;
    }
    #scrollDesktopMenu ul li a:hover {
        color: var(--secondary);
    }
/*#endregion*/

/*#region menu open/close */
    #mobileOpenClose {
        display: none;
        position: fixed;
        z-index: 2000;
        width: 100%;        
    }
    #mobileOpenClose img {
        width: 215px;
        padding: .5rem;
    }
    #nav-icon {
        position: absolute;
        width: 1.875rem;
        height: 1.875rem;
        top: 1.4rem;
        right: 2rem;
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    #nav-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: var(--primary);
        border-radius: 4px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out
    }
    #nav-icon span:nth-child(1) {
        top: 0
    }
    #nav-icon span:nth-child(2) {
        top: .625rem
    }
    #nav-icon span:nth-child(3) {
        top: 1.25rem
    }
    #nav-icon.open span:nth-child(1) {
        top: .625rem;
        background: var(--secondary);
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        transform: rotate(135deg)
    }
    #nav-icon.open span:nth-child(2) {
        opacity: 0;
        left: -45px
    }
    #nav-icon.open span:nth-child(3) {
        top: .625rem;
        background: var(--secondary);
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        transform: rotate(-135deg)
    }
    #theMobileNavigation {
        position: fixed;
        z-index: 1500;
        background-color: rgba(10,10,10,.97);
        height: 100%;
        width: 0;
        top: 0;
        right: 0;
        overflow-x: hidden;
        transition: .3s;
        padding-top: 2em;
        border-left: 0px solid #fff;
        padding-top: 6rem;
    }
    #theMobileNavigation a {
        color: #FFF;
    }
    #theMobileNavigation a:hover, #theMobileNavigation a:focus, #theMobileNavigation a:active, #theMobileNavigation ul li a:hover {
        color: var(--secondary);
    }
    #theMobileNavigation.open {
        width: 0
    }

    #mobileContainer {
        width: 100%;
        padding-right: 1.25rem;
    }

    #theMobileNavigation ul {
        list-style-type: none;
        padding-top: 0;
        padding-right: 1.5rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    #theMobileNavigation ul li {
        text-align: left;
        padding: .5rem .5rem .5rem .5rem;
        border-bottom: 1px solid #777
    }
    #theMobileNavigation ul li a {
        font-size: 1.25rem;
        color: #FFF;
        text-decoration: none;
    }
/*#endregion*/


/*#region media break points*/
@media(max-width:1700px) {
    #mainNavigation {        
        font-size: 1.2rem;
    }
    #mainNavigation ul li {        
        padding: .5rem 1.5rem;
    }
    #topNavLogo img {
        padding-top: .25rem;
        width: 350px;
    }
    #mainSocialFeed {
        padding: 1rem .5rem 1rem .75rem;       
    }
}
@media(max-width:1460px) {
    #mainNavigation {
        font-size: 1.2rem;
    }
    #mainNavigation ul li {
        padding: .5rem .7rem;
    }
}

/*let's go mobile*/
@media(max-width:1330px) {
    #mainSocialFeed, #mainNavigation, #scrollDesktopMenu ul {
        display: none;
    }
    #theMobileNavigation.open {
        width: 350px;
        border-left: 1px solid #F7F7F4;
        max-width: 100%;
    }
    #mobileOpenClose {
        display: block
    }
    #topNavLogo {
        padding: 2rem 2rem !important;
        width: 100% !important;
    }
    #topNavLogo img {
        width: 225px;
    }
}

/*#endregion*/