:root {
  --main: rgb(35, 86, 186);
}
.text-main {
  color: rgb(255 170 23);
}
.flex-1 {
  flex: 1;
}

.logo-img {
  background-color: #eee;
  width: 75px;
  height: 75px;
  margin: 0 auto 18px auto;
  border-radius: 5rem;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4);
}
.logo-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--main);
  padding: 0 30px;
}

/*==========*/
/* Menus */
/*=========*/
/*Desktop Navbar*/
/* #navbar {
    position: relative;
    background-color: #33333330;
    padding-bottom: 0.2em;
    border-bottom: 1px solid #fff;
} */

.black {
    position: fixed;
    top: 0;
    background: #ffffff;
    /* padding-bottom: 0.2em; */
    width: 100%;
    /* border-bottom: 1px solid #050708; */
    box-shadow: 0px 0px 6px 0px #000;
}

.blue{
  position:fixed;
  top:0;
  background:blue;
  width:100%;
  height:50px;
}

/* #navbar {
  position: relative;
  background-color: #333;
} */
/* .menu-item {
  border-right: 1px solid #fff;
} */
.menu-item:first-child {
  border-left: 1px solid #fff;
}

.menu-link {
    display: block;
    color: #000;
    font-size: 26px;
    padding: 20px 21px;
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
.menu-item:hover .menu-link {
  color: #fff;
  background-color: #222;
}

.menu-content {
  position: absolute;
  width: 100%;
  background-color: #fff;
  padding: 30px 0px;
  left: 0;
  border-bottom: 5px solid var(--main);
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  display: none;
  z-index: 3;
}
.menu-content .menu-content-link {
  display: block;
  padding: 5px 16px;
  transition: 0.25s;
  font-size: 19px;
}
.menu-content .menu-content-link:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.menu-item .list-group .active {
  background-color: var(--main);
}

.menu-item:hover .menu-content {
  display: block;
}

.tab-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/*Mobile-Navbar*/
#navbar-mobile {
  position: fixed;
  width: 100%;
  top: 0;
  height: 100vh;
  overflow: auto;
  animation: slideUp 0.3s ease;
  z-index: 5;
}
#accordion {
  padding: 30px 0;
}
#navbar-mobile .accordion-item .btn {
  padding: 15px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  letter-spacing:0.2rem;
}

.accordion-item-content {
  background-color: #eee;
}
.accordion-item-content-item {
  padding: 15px 20px;
}
.accordion-content-link {
  display: inline-block;
  padding: 5px 13px;
  transition: 0.25s;
}
.accordion-content-link:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
