
/**
 * @Project Name  : MSNAV
 * @Starting Date : 26/10/2015
 * @Discription   : style of the nav bar
 * Version        : 0.1
 * @Auther        : [Moustafa Ahmed]
 */


/**
  * Base
  */


* { box-sizing: border-box; padding:0; margin:0; }
 body. html {
 margin: 0;
 padding: 0;
 width: 100%;
 height: 100%;
}

/**
 * msNav
 */


.scroller-nav {
  position: fixed;
  z-index: 9;
  top: 50%;
  right: 7%;
  background: rgba(242, 103, 34, 0.7);
  padding: 20px 10px;
  border-radius: 555px;
  list-style: none;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.scroller-nav a {
  font-size: 0;
  display: block;
  position: relative;
  background: #eee;
  border: 3px solid #fff;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  margin: 5px 0;
}

.scroller-nav li a.current { background: #14517f; }

.scroller-nav a:after {
  content: '';
  display: block;
  background: #fff;
  position: absolute;
  bottom: -12px;
  left: 3px;
  height: 10px;
  width: 4px;
}

.scroller-nav a:before {
  content: '';
  display: block;
  background: #fff;
  position: absolute;
  top: -12px;
  left: 3px;
  height: 10px;
  width: 4px;
}

/**
 * Page Containt
 */


#firstDiv, #secondDiv, #lastDiv {
  width: 100%;
  height: 1000px;
}

#firstDiv { background-color: #2C3E50; color:#fff; text-align:center; }

#secondDiv { background-color: #3498DB; }

#lastDiv { background-color: #34BC9D; color:#fff; }

.parallex {
  background-attachment: fixed !important;
  background-position: center center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100%;
  min-height: 500px;
}

.first-parallex, .second-parallex { background: url('https://unsplash.it/1800/1200?image=923'); }
