body,
html {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.btnBlue {
  min-width: 125px;
  text-align: center;
  background-color: #0d6efd;
  padding: 10px 15px;
  display: inline-block;
  border: none;
  outline: none;
  border-radius: 0px;
  color: white;
  border-radius:50px;
}
.btnBlue:hover {
  background-color: #0693e3;
}
header {
  border-bottom: 1px solid #dedede;
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;

}
.navbarBrandLogo ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.navbarBrandLogo ul li {
  list-style: none;
}

.navbarBrandLogo ul li a {
  color: black;
  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
}

.loginSection .btnBlue{
    border-radius:50px;
    margin: 0 auto;
    display: block;
    max-width: 260px;
}
footer .navbar-nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    justify-content: flex-end;
}
button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.contentHeight {
    min-height: calc(100vh - 352px);
}
@media screen and (max-width:991px){
    footer .navbar-nav {
        justify-content: flex-start;
    }
}
@media screen and (max-width:767px){
    .navbarBrandLogo ul li a {
        font-size: 18px;
    }
    .d-none-mobile{
        display: none;
    }
    footer .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
}
@media screen and (max-width:500px){
    .topheader a{
        margin: 0px 10px 0 0;
    }
    .btnBlue{
        width: 100%;
    }
	    .navbarBrandLogo {
      margin-left: 20%;
  }

}