@charset "utf-8";
/* Bootstrap 5 Navbar Override CSS Document */

#home .navbar {
    background-color: #00000001;
    transition: background-color 0.8s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

#home .navbar.scrolled {
    background-color: #000000;
}

@media screen and (max-width: 991.98px){	
#home .navbar {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
	}
}

.navbar {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}


/* change the link color and padding */
.navbar .navbar-nav .nav-link {
	font-family: "Open Sans", sans-serif;
    font-weight: 600;
	font-size: 0.8em;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	margin-bottom: 0;
	color: #ffffff;
	padding-left: 24px;
}

@media screen and (max-width : 991.98px){	
.navbar .navbar-nav .nav-link  {
    color: #ffffff;
	padding-left: 0px;
	}
}

/* change the color of active or hovered links */
.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-item:hover .nav-link {
    color: #e70002;
}

@media screen and (max-width : 991.98px){	
.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-item:hover .nav-link {
    color: #ffffff;
	}
}


/* Navbar toggler styles */

.navbar .navbar-toggler {
	border: none;
	outline: none;
	padding: 0;

}

/* Base styles for the toggler button */
.custom-toggler {
  display: inline-block; /* Ensure it behaves like a button */
  cursor: pointer; /* Change cursor to pointer on hover */
}

/* Closed State */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16' stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 36px 36px;
margin-right: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Open State */
.navbar-toggler.toggler-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M4 4l16 16M4 20L20 4' stroke='rgba(255,255,255,1)' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  position: fixed;
  top: 20px;
  right: 25px;
  background-size: 28px 28px;
margin-right: 0;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-toggler:focus {
  box-shadow: none;
}

/* Navbar Slide-In on Mobile */
@media (max-width: 991.98px) {
    .navbar-slide {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background-color: #242424;
        transition: right 0.4s ease;
        overflow-y: auto;
        padding-top: 60px;
		padding-left: 32px;
		padding-right: 32px;
    }

}

 .navbar-slide.show {
        right: 0;
    }

 .custom-toggler {
        z-index: 1060;
    }

.dropdown-divider {
	border-top-color: #ffffff50;
}