/* -----navbar----- */



.navbar-cl {
  z-index: 2;
  display: flex;
  position: fixed;
  opacity: 1;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  font-size: 2.2rem;
  padding: 2rem 3rem;
  font-weight: 500;
}

.nav-brand-cl {
  margin-left: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--black-color);
}

.nav-pills-list-cl {
  list-style: none;
  display: flex;
  margin-right: 2rem;
}

.nav-pills-cl {
  padding: 0 2rem;
}

.nav-pills-cl a {
  color: var(--black-color);
  text-decoration: none;
}

/* -----navbar ends----- */

.docs-body {
  display: flex;
  position: relative;
}

/* -----sidebar starts here----- */

.side-bar {
  z-index: 2;
  margin-top: 7rem;
  position: fixed;
  flex-basis: 23rem;
  overflow-y: scroll;
  height: 100vh;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  background-color: var(--white);
  padding: 2rem 4rem 5rem 5rem;
  margin-bottom: 5rem;
  font-size: 1.75rem;
}

.sidebar-label {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 1rem;
}

.sidebar-li {
  padding: 1rem;
}

.sidebar-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--black-color);
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background-color: var(--inactive-dark);
}
::-webkit-scrollbar-thumb {
  background-color: var(--black-color);
}

/* -----sidebar ends here----- */

.main-content-container {
  z-index: 1;
  margin-top: 6rem;
  margin-left: 30rem;
  flex-grow: 1;
  padding: 2rem 1rem;
}

.display-container{
  padding: 1rem 10rem;
}
.display-container-80-width {
  width: 80%;
  padding: 1rem;
}

.display-container-navbar-comp {
  width: 90%;
  height: 10rem;
  position: relative;
}

.img-page-container {
  width: 60rem;
}

.display-code {
  font-size: 1.5rem;
  width: 80rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.landing-pg-main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15rem;
}

.landing-pg-text {
  text-align: center;
  max-width: 70rem;
  font-size: 3.5rem;
  font-weight: 600;
  margin: 4rem;
}

.landing-pg-btn {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 500;
  color: var(--black-color);
  padding: 1rem 2rem;
  margin: 1rem;
  border-radius: 3rem;
  box-shadow: var(--box-shadow);
}

.landing-pg-btn:hover {
  box-shadow: var(--box-shadow-hover);
}

.landing-pg-btn-primary {
  background-color: var(--primary-color);
}

.landing-pg-btn-secondary {
  border: var(--primary-color) 2px solid;
}
