.navbar-section {
  position: relative;
  height: 388px;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
  overflow: hidden;
}

.navbar-container {
  margin: 0 auto;
}

.bg-illustration {
  position: absolute;
  height: 196.98px;
  width: 135.6px;
  bottom: 0;
  left: 0;
}

.innerhero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.innerhero h1 {
  margin-bottom: 24px;
  font-weight: 600;
}

.innerhero .breadcrum {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background-color: rgb(255 255 255 / 14%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  width: 219px;
  height: 50px;
}

.innerhero .breadcrum>* {
  display: inline-block;
}

.innerhero a {
  text-decoration: none;
  color: #fee823;
}

.yellow-gradient-effect-tl {
  position: absolute;
  top: -429px;
  left: -379px;
  width: 800px;
  height: 800px;
  background-image: radial-gradient(circle, #fee82336 2%, #fee82321 44%, #fee82300 78%);
  pointer-events: none;
}

.yellow-gradient-effect-br {
  position: absolute;
  bottom: -429px;
  right: -379px;
  width: 800px;
  height: 800px;
  background-image: radial-gradient(circle, #fee82336 2%, #fee82321 44%, #fee82300 78%);
  pointer-events: none;
}



/*------------------
   Tablet view
------------------*/
@media(max-width: 1024px) {
  .bg-illustration {
    width: 128px;
    height: 185.95px;
  }

  .navbar-section {
    height: 280px;
  }

  .yellow-gradient-effect-tl,
  .yellow-gradient-effect-br {
    display: none;
  }
}


/*-------------------
    Mobile view
-------------------*/
@media(max-width: 767px) {
  .bg-illustration {
    width: 71px;
    height: 103.14px;
  }
}

/*-------------------*/
@media(max-width: 735px) {
  .yellow-gradient-effect-br {
    transform: translateX(280px);
  }

  .yellow-gradient-effect-tl {
    transform: translateX(-280px);
  }
}