* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

#navbar {
  display: flex;
  background-color: black;
  justify-content: space-evenly;
  padding: 0.5rem;
  align-items: center;
}

.menu {
  display: flex;
  gap: 1em;
  font-size: 1rem;
  align-items: center;
}

.menu-items {
  color: white;
  text-decoration: none;
}

.book-now {
  border: 2px solid white;
  color: white;
  background-color: black;
  padding: 10px 32px;
  margin: 4px 2px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }
}

/******************* SECONDARY NAVIGATION ****/

#menu2 {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: auto;
  padding: 2rem 0 10px 0rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.heading {
  font-size: 1.5rem;
}

.secondary-navbar {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: black;
}

hr {
  border-top: 3px solid black;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  hr {
    border-top: 3px solid black;
    width: 100%;
  }

  #menu2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    text-align: center;
  }

  .heading {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .secondary-navbar {
    font-size: 1rem;
    gap: 1.5rem;
    padding: 5px;
    margin: auto;
  }
}

/******************* BIKE COLOR BOX *****/

.bike-color-container {
  background-color: #d8dbda;
}

.bike-color-box {
  display: flex;
  gap: 1rem;
  width: 70%;
  margin: auto;
  padding: 5rem 0;
}

.bike-name {
  font-size: 3rem;
}

.dot {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  margin: 1rem;
}

.dot:hover {
  cursor: pointer;
}

.bike-color {
  text-align: center;
  position: relative;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.flexBottom {
  position: absolute;
  bottom: 0;
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .bike-color-box {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    width: 100%;
    margin: auto;
    padding: 0;
  }

  .bike-color-box > div > img {
    width: 80%;
  }

  .bike-detail {
    display: none;
  }

  .color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .flexBottom {
    position: static;
  }
}

.bike-detail {
  display: flex;
  gap: 1.5rem;
  background-color: #26272a;
}

.bike-detail-image {
  width: 50%;
  height: 60%;
}

.bike-detail-container {
  position: relative;
  width: 50%;
}

.bike-detail-box {
  text-align: center;
  width: 80%;
  margin: auto;
  color: white;
}

.bike-detail-box > h1 {
  margin-top: 4rem;
}

.bike-detail-box > p {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.bike-flex-container {
  display: flex;
  gap: 1rem;
  position: absolute;
  bottom: 0;
}

.bike-flex-box > .circle {
  width: 90%;
  padding-bottom: 2rem;
  position: relative;
}

.bike-flex-box > .performance {
  position: absolute;
  top: 10%;
  padding: 2rem;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .bike-detail {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .bike-detail-container {
    width: 100%;
  }

  .bike-detail-box {
    text-align: center;
    width: 100%;
    font-size: 1rem;
    margin: auto;
  }

  .bike-detail-box > h1 {
    margin-top: 2rem;
  }

  .bike-detail-box > p {
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    padding-bottom: 35rem;
  }

  .bike-detail-image > img {
    width: 100%;
    height: 90%;
  }

  .bike-flex-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    bottom: 0;
  }

  .bike-flex-box > .circle {
    width: 50%;
    padding-bottom: 2rem;
    position: relative;
  }

  .performance {
    display: none;
  }
}

.bike-speed-container {
  text-align: center;
  align-items: center;
  padding: 3rem;
}

.makebold {
  font-size: 4rem;
  font-weight: bold;
}

.bike-speed-mode {
  display: flex;
  justify-content: space-evenly;
  font-size: 3rem;
  width: 20%;
  margin: auto;
  font-weight: bold;
}

.bs-1 {
  font-size: 2rem;
}

.bs-2 {
  font-size: 6rem;
  font-weight: bold;
}

.bs-3 {
  font-size: 2rem;
  font-weight: bold;
}

u {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .bike-speed-container {
    padding: 2rem;
  }

  .makebold {
    font-size: 2.5rem;
  }

  .bike-speed-mode {
    font-size: 2.5rem;
    justify-content: space-evenly;
    width: 100%;
  }

  .bs-2 {
    font-size: 2.5rem;
  }
}
