/*==========----------==========*/
/*            GENERAL           */
/*==========----------==========*/
header{
    z-index:3 !important;
}
header nav{
    font-family:'Lato', sans-serif;
    font-size:1.1em;
    text-decoration: none;
    display:block;  
}
header nav .col-flex-2{
	padding-left: 0;
}
header nav ul{
	margin: 0;
}
header nav ul li:first-of-type{
	padding-left: 0;	
}
header nav ul li a {
    text-decoration: none;
    list-style: none;
    margin:0;
    padding:0;
}
header nav li{
    display:inline-block;
    position:relative;
}
/*==========----------==========*/
/*            HIDDEN            */
/*==========----------==========*/

#menuToggle {
  text-align:right;
  display: block;
  position: absolute;
  top: 32%;
  right: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*hamburger*/
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #a4aab3;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menu {
  position: absolute;
  width: 200em;
  height: 12em;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  background: #ffffff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(0, -100%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
  padding-right: 4em;
  color: #918a8a;
  text-transform: uppercase;
  font-size: 1em;
}

/*For Mobile Nav*/

#menu .displayedNavmobile {
    position: fixed;
    flex-direction: column;
}

/* Mobile Nav Revealed */

.showMobileNav #menuToggle #menu {
  transform: scale(1.0, 1.0);
  opacity: 1;
}

.showMobileNav #menuToggle span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #918a8a;
}

.showMobileNav #menuToggle span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.showMobileNav #menuToggle span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*==========----------==========*/
/*           DISPLAYED          */
/*==========----------==========*/
header nav .displayedNav li {
    color: #a4aab3;
    padding: 0 1em;
}

header nav .displayedNav li i {
    padding: 0 .5em;
}

.socialMediaIcons {
    padding: 0 .2em !important;
    font-size: 1.13em;
}
/*==========----------==========*/
/*      DEFAULT FOOTER NAV      */
/*==========----------==========*/

footer nav {
    display: none;
}
footer .container {
    background-color: #918a8a;
    color: #f4f4f4;
}
footer .colRowFlex {
    padding: 1em 0 0 0;
}
footer ul {
    padding: 0;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}
footer i {
    font-size: 1.5em;
    padding-right: .6em;
}
footer .listContentFooter li {
    display:inline-block;
    position:relative;
    text-decoration: none;
    list-style: none;
    margin:0;
    }
footer p{
    font-size: .8em;
}
.SBLink {
    text-decoration: none;
    float: right;
    margin-bottom: 12px;
}
.footercolRowFlexPadding {
    padding: 0 !important;
}
footer .socialMediaIcons i{
    padding-right:0;
}

/*==========----------==========*/
/*          STICKY NAV          */
/*==========----------==========*/

header.fixed{
    position:fixed;
    top:0;
    right:0;
    left:0;
    transform:translateY(-100%);
    animation: slideDown .5s ease;
    animation-fill-mode: both;
}

nav {
    width: 100%;
    background: #ffffff;
    letter-spacing: 0.025em;
}

nav ul li {
    display: inline-block;
}

@keyframes slideDown{
    0%{
        transform:translateY(-100%);
    }
    100%{
        transform:translateY(0);
    }
}