:root {
  --primary-color: #001d7c;
  --primary-font: "Urbanist", sans-serif;
  --secondary-color: #ffffff;
  --tertiary-color: #fccd0c;
  --black-color: #000000;
}

.customNavbar {
  top: 0;
  width: 100%;
  align-items: center;
  display: flex;
  position: absolute;
  position: fixed !important;
  background-color: #001d7c;
  justify-content: center !important;
  height: 100px;
  z-index: 1000;
}
.navContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}
.navbar-brand {
  padding: 0 !important;
}
.navbar-brand img {
  height: 90px;
}
.navRight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.navRight p {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
}
.navRight .buttonBox {
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--tertiary-color);
  border-radius: 8px;
  height: 60px;
}
.navRight .buttonBox button {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: 0.5s;
}
.navRight .buttonBox button img {
  height: 44px;
}
.navRight .buttonBox button:hover {
  transform: scale(1.05);
  transition: 0.5s;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.buyBtn {
  display: none;
}

@media screen and (max-width: 900px) {
  .customNavbar {
    height: 85px;
  }
  .navbar-brand img {
    height: 70px;
  }
  .navRight p {
    font-size: 20px;
  }
  .navRight .buttonBox {
    padding: 6px;
  }
}
@media screen and (max-width: 768px) {
  /* .navRight p,
  .navRight .buttonBox {
    display: none;
  } */
  /* .buyBtn {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    background-color: var(--secondary-color);
    color: #001d7c;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    width: 150px;
    text-decoration: none;
    font-family: var(--primary-font);
    transition: 0.5s;
  }
  .navRight .buyBtn:hover {
    text-decoration: none;
    transform: scale(1.05);
    transition: 0.5s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  } */
  .navRight p {
    font-size: 16px;
  }
  .navRight .buttonBox {
    padding: 4px;
    gap: 4px;
    height: 40px;
  }
  .navRight .buttonBox a img {
    height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .navContainer {
    width: 95%;
  }
  .navRight {
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }
  .navRight .buttonBox {
    padding: 4px;
    gap: 4px;
    height: 30px;
  }
  .navRight .buttonBox a img {
    height: 25px;
  }
}
