:root{
  --bs-app: rgb(255, 126, 32);
  --bs-app-color: rgb(255, 255, 255);
}
/* For WebKit-based browsers */
::-webkit-scrollbar {
  width: 8px; /* Adjust the width of the scrollbar */
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Set the background color of the track */
}
::-webkit-scrollbar-thumb {
  background-color: #888; /* Set the background color of the thumb/handle */
  border-radius: 5px; /* Optional: Add border-radius for rounded corners */
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--bs-app); /* Change the background color on hover */
}

.bg-app{
  background-color: var(--bs-app);
}
.text-app{
  color: var(--bs-app);
}
.navbar_bg{
  background-color: rgb(29, 30, 31);
}
.navbar_logo{
  width: 120px;
}
.navbar-nav .nav-link {
  font-size: 22px;
}
.custom_banner{
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
}
.custom_banner_content1{
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  border-bottom-left-radius: 50% 20px;
  border-bottom-right-radius: 50% 20px;
}
.custom_banner_content2{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
}
h1{
  font-size: 75px;
  font-weight: 800;
}
.custom_banner_p1{
  font-size: 55px;
  font-weight: 700;
}

.custom_title1{
  color: var(--bs-app);
  font-size: 23px;
  border-bottom: 3px solid var(--bs-app);
}
.custom_info1{
  color: #34406c;
  font-size: 32px;
  font-weight: bold;
}
.custom_info2{
  color: #7e7e7e;
  font-size: 18px;
}

.feature_div{
  width: 100%;
  border-radius: 1rem;
  border: 2px solid var(--bs-app);
  color: white;
  background-color: #28292e;
  /*box-shadow: 0 10px 29.7px 0.3px rgba(225, 225, 225, 0.64)*/
}
.feature_div .custom_icon_div1{
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
}
.feature_div .custom_icon_div1 i{
  font-size: 36px;
  color: var(--bs-app);
}
.feature_div .ctitle{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature_div p{
  font-size: 16px;
}

.app_img{
  width: 200px;
}

.gallery_img{
  width: 100%;
  border-radius: 1rem;
}

.footer_quick_note1{
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}

.item_name {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 4px;
  margin-bottom: 2px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item_price {
  font-size: 15px;
  line-height: 1.2;
}
.item_discount {
  font-size: 13px;
  line-height: 1.2;
  padding-right: 4px;
  color: #6d7080;
  text-decoration: line-through;
}

.owl-stage{
  padding-right: 0 !important;
}
.WhatsappBtn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgb(17, 206, 42);
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-size: 32px;
  z-index: 99;
}

@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 575px) {
  .navbar_logo{
    width: 30px !important;
  }
  .navbar-nav .nav-link {
    font-size: 16px;
  }
  .app_img{
    width: 150px;
  }
}