.navigation {
  position: fixed;
  width: 200px;
  height: 100%;
  background: var(--darkBlue-color);
  transition: 0.5s;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navigation ul {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.navigation ul li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
}

.navigation ul li:hover {
  background: var(--blueHover);
  padding-left: 10px;
}

.navigation ul li:last-child {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: 20px;
}

.navigation ul li:last-child a {
  font-size: 12px;
}

.navigation ul li:last-child:hover {
  background-color: transparent;
  padding: 0;
}

#facebook:hover {
  color: #4867aa;
}
#youtube:hover {
  color: #ff0000;
}
#instagram:hover {
  color: #c63a7e;
}


.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  color: var(--white-color);
  display: flex;
  text-decoration: none;
}

.navigation ul li a .icon .fa {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: var(--white-color);
  font-size: 24px;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  white-space: nowrap;
}

/* Large devices (desktops, 992px and down) */
@media (max-width: 992px) {
  .navigation {
    display: none;
  }
}