@font-face {
  font-family: 'Louis George Cafe';
  src: url(../fonts/LouisGeorgeCafe.woff) format('woff'),
    url(../fonts/LouisGeorgeCafe.woff2) format('woff2');
}

@font-face {
  font-family: 'Catchye Demo';
  src: url(../fonts/CatchyeDemo.woff) format('woff'),
    url(../fonts/CatchyeDemo.woff2) format('woff2');
}

@font-face {
  font-family: 'Metropolis';
  src: url(../fonts/Metropolis-SemiBold.woff) format('woff'),
    url(../fonts/Metropolis-SemiBold.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Regular.woff) format('woff'),
    url(../fonts/Montserrat-Regular.woff2) format('woff2');
}

/* ------ SIDE BAR ------  */

.caret {
  color: #de9171;
}

.caret:hover {
  color: #fff;
}

.menu li {
  position: relative;
}

.menu a,
.dropbtn {
  font-size: 15px;
  padding: 2px 2px;
  font-family: 'Montserrat';
  letter-spacing: 1mm;
  display: block;
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.menu a:hover,
.dropbtn:hover {
  background-color: transparent;
}

.dropdown-content {
  display: none;
  position: relative;
  min-width: 160px;
  z-index: 1;
  padding-left: 5px !important;
}



.dropdown-content li a {
  color: white;
}

.dropdown.open .dropdown-content {
  display: block;
}

#sidebar {
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 378.5px;
  background: #111;
  z-index: 999;
  transition: transform 0.1s ease-in;
}

#sidebar ul li {
  list-style: none;
  color: white;
  font-size: 15px;
  margin-left: 3em;
  font-family: 'Montserrat';
  margin-top: 6em;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1mm;
  box-sizing: border-box;
  width: 50%;
}

/* ============================================ */
/* FIX: Equal spacing for dropdown items */
/* ============================================ */

/* Make all dropdown items equally spaced */
.dropdown-content li {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

/* Keep the same spacing for all dropdown items */
.dropdown-content li:first-child {
  margin-top: 0.5em !important;
}

.dropdown-content li:last-child {
  margin-bottom: 0.5em !important;
}

/* ============================================ */

#sidebar ul li:hover,
#sidebar ul li:focus {
  color: #de9171;
  border-left: 2px solid #f2cf00;
  padding-left: 1em;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: transparent !important;
}

.close-btn {
  float: right;
  height: 50px;
  padding: 1em;
  margin-top: 0.3em;
  cursor: pointer;
}