.tt-text-uppercase {
  line-height: 40px !important;
}
.margin-topm30 {
  margin-top: -30px !important;
}
/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-left: 15px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #ed4e3b;
  border-radius: 2px;
}
/* Sidebar */
ul.sidebar-menu {
  margin-top: -20px;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #ed4e3b;
  color: #fff;
  padding: 21px 20px;
  transition: right 0.3s ease;
  z-index: 9999;
}
.sidebar.active {
  right: 0;
}
.sidebar .close-btn {
  font-size: 30px;
  cursor: pointer;
  display: block;
  text-align: right;
  margin-bottom: 30px;
}
.sidebar-menu {
  list-style: none;
  padding: 0;
}
.sidebar-menu li {
  margin: 20px 0;
}
.sidebar-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* Show hamburger only on mobile */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .tt-main-menu {
    display: none;
  }
}
.white {
  background: #fff;
  width: 100%;
  margin: 0px;
  color: #000;
}
