@charset "UTF-8";

@font-face {
  font-family: "kotor2";
  src: url('../fonts/WoodBlockCG.otf');
}

.logo-custom{
  color: #e5474b;
  /* font-family: 'harvest_barn', cursive; */
  /* font-family: 'Permanent Marker', cursive; */
  font-family: 'kotor2', cursive;
  font-size: 2.5em;
  float: left;
}

.logo-custom:hover {
  color: #e5474b;
}

.banner-image{
  position: relative;
  object-fit: cover;
  min-width: 100%;
  height: 100%;
}

.banner-content{
  position: absolute;
  top: 20%;
  left: 10%;
}



.side-menu-bar {
  width: 100%;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.side-menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-menu-bar ul li {
  display: block;
  background: rgba(44, 62, 80, 0.95);
  color: #fff;
  text-decoration: none;
}

.side-menu-bar ul li a {
  display: block;
  /* background: rgba(44, 62, 80, 0.95); */
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  text-align: left;
}

.side-menu-bar ul li a:hover {
  background: rgb(52, 152, 219);
}
.side-menu-bar ul li a .fa {
  width: 16px;
  text-align: center;
  margin-right: 5px;
}
.side-menu-bar ul li a .badge {
  display: inline-block;
  background: #fff;
  /* IE Fallback */
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.side-menu-bar ul li ul li a {
  background: #444;
  border-left: 4px solid transparent;
  padding: 10px 20px;
}
.side-menu-bar ul li ul li a:hover {
  background: #333;
  border-left: 4px solid #3498db;
}

/* Float Right/Left */
.right {
  float: right;
}
.left {
  float: left;
}
