
	/*   
	
	Theme Name: Creatively Ewe
	Theme URI: https://creativelyewe.com
	Description: Navigation styles for Creatively Ewe
	Author URI: https://creativelyewe.com
	Version: 0.0.1  
   */

:root {
  --primary-color: #2f5061;
  --secondary-color: #1b206e;
  --hover-color: #a9c7d6;  
}


/* BASE STYLES */
* {
  /*box-sizing: border-box;*/
  margin: 0;
  padding: 0;
}



/*  Navigation */


/* TOGGLE */
.nav_container.secondary .toggle, .nav_container .toggle {
	position: absolute;
  	top: 20px;
  	right: 25px;
	width: 60px;
	height: 60px;
    background: #ffffff url(../images/menu-blk.png);
    background: #2f5061 url(../images/menu.png);
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
 	z-index: 1000;
	cursor: pointer;
    
}


.nav_container.secondary .toggle  {
    background: #667D8C url(../images/menu.png);
    background: #2f5061 url(../images/menu.png);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}


.nav_container .toggle.active, .nav_container.secondary .toggle.active {
  background: var(--primary-color) url(../images/close.png);
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 55px;
  right: 85px;
}



/* NAVIGATION */
.navigation {
	
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation.active {
  	left: 0;
	
}

.navigation ul {
  position: relative;
}

.navigation ul li {
  position: relative;
  list-style: none;
  text-align: center;
}

.navigation ul {
    position: relative;
}



.navigation ul li {
	
    position: relative;
    list-style: none; 
    text-align: center;
    padding-bottom: 10px;
}

.navigation ul li a, .navigation ul li  {
    font-size: 2.2rem;
    font-family: 'McLaren', cursive;
    color: #2f5061;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
}

.navigation ul li a:hover {
  color: var(--hover-color);
}

.navigation ul li.contactLink, .navigation ul li.aboutLink, .navigation ul li.servicesLink, .navigation ul li.portfolioLink, .navigation ul li.paymentsLink, .navigation ul li.homeLink {
    color: #c1684c;
    font-style: normal;
    font-weight: bold;
}


.navigation .social-bar {
  position: absolute;
  top: 0;
  left: 3%;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation .social-bar a {
  display: inline-block;
  transform: scale(0.75);
}


.navigation .email-icon {
  
  transform: scale(0.5);
}
