* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  background: #111;
  color: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #000;
  z-index: 10000;
  -webkit-transition: 300ms all ease-in-out;
    -o-transition: 300ms all ease-in-out;
    -moz-transition: 300ms all ease-in-out;
    transition: 300ms all ease-in-out;
}
.header.hide {
  transform: translateY(-100%);
}
/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #000;
  position: relative;
  z-index: 100;
} */

.logo {
  height: 45px;
}

/* DESKTOP NAV */
.nav-desktop {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-desktop a,
.dropbtn {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-desktop a:hover, .dropdown-content a:hover, .dropbtn:hover {
  color: #cc0909;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  background: #000;
  min-width: 150px;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* RIGHT ICONS */
.header-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: 0.3s;
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: flex-end;
}

.{
  font-size: 22px;
  cursor: pointer;
}

/* TRENDING */
.trending h4 {
  margin: 20px 0 10px;
}

.tags span {
  border: 1px solid #555;
  padding: 5px 10px;
  margin: 5px;
  display: inline-block;
  font-size: 12px;
}

/* MOBILE NAV */
.mobile-nav {
  list-style: none;
  margin-top: 20px;
}

.mobile-nav li {
  padding: 15px;
  border-bottom: 1px solid #222;
}

.has-sub ul {
  list-style: none;
  margin-top: 10px;
  padding-left: 15px;
}

.has-sub ul li {
  font-size: 14px;
  border: none;
}

footer .border-top {
    color: black;
}

.bg-fuuter{
    background: #e5e3e3;
}

.fuuter {
    color:black;
    position: relative;
    width: 100%;
    z-index: 0;
    padding: 35px;
}

.container-custom-size {
  padding: 39px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .logo {
      height: 25px;
  }
  .header {
    padding: 15px 15px;
  }
}


