/* line 1, C:/Users/Shubham/Desktop/test/sass/app.sass */
html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  
}

/* line 7, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav {
  background: white;  /* ????  bleu foncé */
  position: relative;
  z-index: 1000;

}

/* line 13, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .logo i {
  color: white; /* ???? */
  font-size: 1.5rem;
  padding: 20px;
}

/* line 17, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .logo i:hover {
  color: #e74c3c;  /* ???? rouge */
  transition: color 0.3s;
}

/* line 24, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .main-nav .hamburger-nav::after {
  font-family: FontAwesome;
  content: "\f0C9"; 
  color: grey;
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* line 34, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .main-nav .menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 80px;
  padding-left: 0;
  width: 100%;
  overflow: hidden;
  }

/* line 42, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .main-nav .menu a {
  display: block;
  background: #B4B4B4; /* OK fond menu */
  text-decoration: none;
  text-align: center;
  padding: 12px;
  border-bottom: 2px solid rgba(200, 200, 200, 0.2);
  
}

/* line 50, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .main-nav .menu a:hover {
  background: #0E2E50; /* OK fond lien */
  transition: background 0.3s ease;
  
}

/* line 53, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .main-nav .menu a:hover li {
  color: white; /* OK couleur text hover */
  font-weight: bold;
  }


/* line 56, C:/Users/Shubham/Desktop/test/sass/app.sass */
.nav .main-nav .menu a li {
  color: #0E2E50;/* OK couleur caractères menu */
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: 17px;
  text-align: right;
}


/*# sourceMappingURL=../css/app.map */
