body,
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;/* use to fix over-width */ 
}


/* width */
::-webkit-scrollbar {
    width: 12px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(1, 143, 25);
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(4, 100, 4);
  }


/**********************/
   /* Navbar style */
/**********************/
#navbarHome {
  margin-left: 5rem;
}

#navbarActive,
#navbarDropdown {
  border-radius: 15px;
}

/* mouse over link */
#navbarActive:hover,
#navbarDropdown:hover {
  color: whitesmoke;
  background-color: gray;
  border-radius: 15px;
}

/* selected link */
#navbarActive:active {
  color: yellow;
}

#navbarImg {
  margin-top: -20px;
}
#navImgDropdown {
margin-left: -6rem;
}
 /* hidden from desktop */
 #navbarImgMobile {
  display: none;
}
.user-avatar-xxl {
  height: 128px;
  width: 128px
}

.user-avatar-xl {
  height: 90px;
  width: 90px
}

.user-avatar-lg {
  height: 48px;
  width: 48px
}

.user-avatar-md {
  height: 32px;
  width: 32px
}

.user-avatar-sm {
  height: 24px;
  width: 24px
}

.user-avatar-xs {
  height: 18px;
  width: 18px
}
/*****************/
 /* Navbar END */
/*****************/

.price-bg {
    position: relative;
    width: 100vw;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/price-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    filter: brightness(50%);
}
.price-content {
position: absolute;
  font-family: "Monserrat", sans-serif;
  color: white;
 top: 8rem;
  text-align: center;
  margin: 0.625rem;
}
.price-title {
    text-transform: uppercase;
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0;
  }

#priceBtn {
    border-radius: 30px;
    width: 70%;
}


  /* footer */
a {
    color: #fff;
    text-decoration: none;
  }
  a:hover {
    color: #cb376a;
  }

  
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
   
    border: none;
    outline: none;
    background-color: rgb(41, 53, 40);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
  }
  
  #myBtn:hover {
    background-color: #555;
  }
  

  @media only screen and (max-width: 768px) {
    /* For mobile phones */

  /* Footer */
  #footerAbout {
    width: 50%;
  }
  #footerContact {
    width: 50%;
  }
  #footerHours {
    width: 60%;
  } 
  #footerSubs {
    width: 100%;
  }
  .offset-1 {
    margin-left: 0%;
  }
   /* navbar */
   #navbarHome {
    margin-left: 16px;
     border-radius: 15px;
   }
    /* mobile hidden */
  #navbarImg,
  #navImgDropdown {
    display: none;
  }
  /* for mobile */
  #navbarImgMobile {
    display: contents;
    margin: 0;
   padding: 0;
   text-align: right;
  }
  #navDropdownMobile {
    margin-right: 6rem;
  }
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}	
/* ============ desktop view .end// ============ */