@font-face {
   font-family: nunitoLight;
   src: url(resources/nunito/Nunito-Light.ttf);
}
@font-face {
   font-family: nunitoExtraLight;
   src: url(resources/nunito/Nunito-ExtraLight.ttf);
}
@font-face {
   font-family: nunitoBold;
   src: url(resources/nunito/Nunito-Bold.ttf);
}

html {
  scroll-padding-top: 160px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: 'Nunito';
  /*height: 100%;*/
  /*width: 100%;*/
}

a 
{
    text-decoration: none;
    color: inherit;
}

/* Navigation */

.nav-container {
  background: #FFFFFF;
  /*box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);*/
  height: 80px;
  position: fixed;
  width: 100%;
  top:0px;
  z-index:1;
}

.wrapper {
  width: 90%; /* Space of the content, right-left */
  margin: 0 auto;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

nav ul {
  display: flex;
  height: 80px;
  align-items: center;
}

div .logo {
  font-family: nunitoLight;
  font-style: normal;
  color: #B8B7B2;
  font-size: 16px;
  height: 50px;
  display: flex;
  align-items: center;
}

.tool-name {
  color: #DACA91;
}

nav .logo img{
  height: 50px;
}

.init-info li {
  list-style: none;
  margin-right: 20px; /* Space between menu items */
}

.nav-items li {
  list-style: none;
  margin-right: 0px;  Space between menu items */
}

.nav-items li:nth-last-of-type(1) { /* Remove space on the right side of the last element of the menu */
  margin: 0;
}

.nav-items button {
  font-family: 'Nunito';
  background: white;
  font-weight: normal;
  font-size: 14px;
  color: #B8B7B2;
  border: 2px solid transparent;
  cursor: pointer;
  transition-duration: 0.4s;
  height: 80px;
  width: 120px;
}

.nav-items button:hover {
  background-color: #F4EFDC;
}

.nav-items button:focus {
  outline: 0;
}

#menu-btn-active {
  border-bottom: 2px solid #E4D69C;
  font-family: nunitoBold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.02);
  z-index: 1;
}

.dropdown-content a {
  font-family: nunitoLight;
  color: #B8B7B2;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
    background-color: #F4EFDC;
}

.dropdown:hover .dropdown-content {
    display: block;
    border-top: 2px solid #E4D69C;
}

.dropdown:hover .dropbtn {
    background-color: #F4EFDC;
}

/* Toolbar */

.toolbar-container{
  background: white;
  border-top: 2px solid #f2f1ed;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  z-index:0;
  height: 40px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 80px;
}

.toolbar-container ul {
  display: flex;
  width: 100%;
}

.toolbar-container li {
  list-style: none;
  margin-right: 3%;
}

.toolbar-container button {
  background: transparent;
  font-family: 'Nunito';
  font-weight: normal;
  font-size: 14px;
  color: #DACA91;
  border: 2px solid transparent;
  cursor: pointer;
}

/*.toolbar-container button:hover {
  background: #F4EFDC;
  border: 2px solid transparent;
  border-radius: 50px;
}*/

.toolbar-container button:focus {
    outline:0;
}


/* Tool list */

.tools-container {
  font-family: 'NunitoLight';
  font-weight: normal;
  text-align: center;
  margin-top: 160px;
  height: 100%;
}

.tools-container ul {
  list-style-type: none;
  margin: 0px auto;
  padding-inline-start: 0px;
  margin-bottom: 150px;
  margin-top: 3%;
}

.tools-container h2 {
  color: #B8B7B2;
  margin-top: 70px;
  margin-bottom: 40px;
  font-size: 30px;
}

.tools-container p {
  width: 85%;
  color: #B8B7B2;
  display: inline-block;
  padding: 10px;
}

.gallery{
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  height: 100%;
}

ul::-webkit-scrollbar {
  height: 6px;
  background: #f2f1ed;
}

/* Handle */
ul::-webkit-scrollbar-thumb {
  background: #B8B7B2;
  border-radius: 2px;
}

/* Handle on hover */
ul::-webkit-scrollbar-thumb:hover {
  background: #DACA91;
  cursor: pointer;
}

.template {
  margin: 2%;
  display: inline-block;
}

.template img{
  height: 45vh;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.template img:hover{
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2), 0px 0px 0px 5px #F4EFDC;
  cursor: pointer;
}

a 
{
    text-decoration: inherit;
    color: inherit;
}
