li a {
  cursor: pointer;
}

.tablenone {
  display: none;
}

.tablenone td,
.tablenone tr,
.tablenone th {
  text-align: center;
}

/* .table td,
.table th {
  border-color: rgba(0, 0, 0, 0.86);
} */

.table-bordered td,
.table-bordered th {
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-top: 0px;
  vertical-align: middle;
  border-bottom: 0px;
}

.table th {
  background-color: #242b2e;
  color: white;
  border: 1px white solid;
}



@media (min-width: 992px) {
  .sticky-header-active #header.header-narrow .header-logo .logo-small {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    z-index: 3;
    margin: 5px 12px 12px 0;
  }
}

#carousel .carousel-item.one {
  background-image: url(/img/Tanishk/homebanner1.jpg);
}

#carousel .carousel-item.two {
  background-image: url(/img/Tanishk/homebanner2.jpg);
}

#carousel .carousel-item.three {
  background-image: url(/img/Tanishk/homebanner3.jpg);
}

#carousel .carousel-item.four {
  background-image: url(/img/Tanishk/homebanner4.jpg);
}

#carousel .carousel-item.five {
  background-image: url(/img/Tanishk/homebanner5.jpg);
}

#carousel .carousel-item.six {
  background-image: url(/img/Tanishk/homebanner6.jpg);
}

#carousel .carousel-item {
  height: 100vh;
  width: 100%;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel .carousel-inner .carousel-item {
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

#carousel .carousel-item .caption {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  color: white;
  animation-duration: 1s;
  animation-delay: 1s;
}

#carousel .caption h2 {
  animation-duration: 1s;
  animation-delay: 1s;
  color: white;
  font-weight: 400;
}

#carousel .caption p {
  animation-duration: 1s;
  animation-delay: 2.1s;
}

#carousel .caption a {
  animation-duration: 1s;
  animation-delay: 2.4s;
}

.delicious-btn {
  display: inline-block;
  min-width: 160px;
  color: #fff;
  border: none;
  border-left: 3px solid #ce2600;
  border-radius: 0;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-transform: capitalize;
  background: #E04622;
}

.delicious-btn:hover,
.delicious-btn:active,
.delicious-btn:focus {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #ca2d09;
  border-color: #941b00
}

/* (A) FIXED WRAPPER */
.hwrap {
  overflow: hidden;
  /* HIDE SCROLL BAR */
  background: #E04622;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.hwrap button {
  position: absolute;
  left: 0px;
  z-index: 100;
  background-color: #242B2E;
  border: 0px;
  outline: none;
  font-family: 'poppins', sans-serif;
  font-weight: 500;
  padding: 0px 5px;
  color: #CAD5E2;
}

/* (B) MOVING TICKER WRAPPER */
.hmove {
  display: flex;
}

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
.hitem {
  flex-shrink: 0;
  min-width: 30%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes tickerh {
  0% {
    transform: translate3d(100%, 0, 0);
  }

  100% {
    transform: translate3d(-400%, 0, 0);
  }
}

.hmove {
  animation: tickerh linear 50s infinite;
}

.hmove:hover {
  animation-play-state: paused;
}