

@media screen and (max-width: 992px) {         /* media query when the screen is at or BELOW 768 px...*/
    .fade:not(.show) {
        opacity: 1;
    }
    .line {                                      /* for the lines that make the hamburger icon...*/
        width: 30px;
        height: 3px;
        background: rgb(30, 63, 144);
        margin: 5px;
        border-radius: 1px
    }

    nav {
        position: relative;                     /* since we want to place our burger menu on the far right we set position to relative...*/
    }
    nav  a {
        color: #1e3f90;

    }
    .hamburger {                               /* and because the nav has a realtive position, the hamburger can be moved freely...*/
        position: absolute;                    /* outside normal document flow */
        cursor: pointer;                       /* on hover, a pointer will show */
        right: 5%;                             /* and positioned 5% from the right of the window */
        top: 50%;                              /* to center burger icon, set 50% (i.e. mid) */
        transform: translate(-5%, -50%);       /* and transform translate with offset*/
        z-index: 9999;
    }
   /* .conect{
        position: absolute;                    !* outside normal document flow *!
        cursor: pointer;                       !* on hover, a pointer will show *!
        right:  calc(5% + 50px);                            !* and positioned 5% from the right of the window *!
        top: 50%;                              !* to center burger icon, set 50% (i.e. mid) *!
        transform: translate(-5%, -50%);       !* and transform translate with offset*!
        z-index: 1001;
    }*/

    .nav-links {
        position: fixed;                        /* with position: fixed, element is relative to viewport and stays in the same place even on scroll*/
        background:  #fff;          /* color (same as the nav bar) */
        margin-top: 0;                     /* height is 100% if the viewport */
        width: 100%;                            /* width is 100% of the viewport */
        flex-direction: column;                 /* let the flex direction be stacked on top of each other*/
        pointer-events: none;                    /* fo clickability */
        padding: 25% 10%;
       /* clip-path: circle(100px at 90% -40%);  */            /* add the clip-path property with a circle that starts at the top right*/
        -webkit-clip-path: circle(0 at 90% -10%);      /* and to ensure compatibility, add a webkit*/
        transition: all 1s ease-out;                           /* animation effect */
    }


    /* on click of the burger icon*/
    .nav-links.open {
        clip-path: circle(1400px at 90% -10%);              /* add the clip-path property with a circle that starts at the top right*/
        -webkit-clip-path: circle(1400px at 90% -10%);      /* and to ensure compatibility, add a webkit*/
        pointer-events: all;
        z-index:999;
    }

    /* For link animation on click*/
    .nav-links li {
        opacity: 0;
    }
    .nav-links > li > a {
        font-size: 16px;
    }
    .nav-links li:nth-child(1) {                           /* if you want to animate the links in the menu to fade in, selct the first child */
        transition: all 0.5s ease 0.2s;                    /* transition all for .5 seconds with an ease with delay of 0.2 seconds*/
    }
    .nav-links li:nth-child(2) {                           /* if you want to animate the links in the menu to fade in, selct the second child */
        transition: all 0.5s ease 0.35s;
    }
    .nav-links li:nth-child(3) {                           /* if you want to animate the links in the menu to fade in, selct the third child */
        transition: all 0.5s ease 0.45s;
    }
    li.fade {
        opacity: 1;
        margin-bottom: 20px;
    }
    nav {
        /*  height: 10vh;   */                          /* nav bar relative to the rest of the viewport (90vh)*/
        background-color: #fff;
        display: flex;                            /* add display flex for logo*/
    }

    .brand-logo {                                                                /* section of header that holds the logo and brand name elements. */
        /* ... remove underline from brand name (since it is a link to the home page). */
        margin: 12px;

    }

    .nav-links {
        display: flex;                              /* display elements side by side */
        list-style: none;                           /* remove default stylization (i.e. bullet points*/
        width: 100%;                                 /* make the wdith of nav-links 50% of the nav bar itself (i.e. XXXXXXXX--------*/
        height: 100%;                               /* make it 100% of the nav-links box*/
        /* align-items: flex-start;                        !* position the links vertically in the center *!
         justify-content: space-evenly; */              /* space all the links so they are evenly spaced in the nav-links box */
        margin-left: auto;                          /* margin-left auto will position the links to the far RIGHT of the nav-links section*/
        z-index:999
    }

    .nav-links .link {                       /* For each link in the nav link... */
        color: white;                      /* text is white...*/
        text-decoration: none;               /* remove deafult style (i.e. underline)*/
    }





}

.text-white{
    color:#fff !important
}
/****/
.navMenu ul {
    display: flex;
    justify-content: space-between;
}

.navMenu li {
    list-style: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

.navMenu li:hover {
    color: blue;
}

/* Styles for the hamburger menu icon */
/*#hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}*/

#hamburger div {
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.5s;
}

#hamburger {
    display: none;
}

@media screen and (max-width: 992px) {
    #hamburger {
        display: block;
        z-index: 100001;
    }

    .navMenu {
        position: fixed;
        top:0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        transform: translateX(100%);
        transition: 0.5s;
        z-index: 10000;

    }

    .navMenu ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
        overflow-x: auto;
        height: 98vh;
    }

    .navMenu li {
        color: white;
        padding: 15px 0;
    }
}

/* Extra utility classes to be added with JS */

.nav-active {
    transform: translateX(0);
}

#hamburger.toggle div {
    background-color: white;
}

.toggle #bar1 {
    transform: rotate(-45deg) translate(-5px, 4px);
}

.toggle #bar2 {
    opacity: 0;
}

.toggle #bar3 {
    transform: rotate(45deg) translate(-5px, -4px);
}


.nav-connect{
    display: block;
    margin-right: 7%;
}

.border-top-white{
    border-top:1px solid #fff !important;
}