/* --- navbar --- */

.navbar {
  overflow-x: clip;
  z-index: 999;
      padding-top: 1.6em;
    padding-bottom: 1.6em;
    border-bottom:1px solid #e1e1e1!important;
}
.navbar .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  padding: 0px !important;
}
.navbar .nav-link.active {
  color: #000;
}
.navbar .dropdown-menu {
  border-radius: 0px;
  border: none;
  box-shadow: 0 15px 21px 0 #0000002e;
}
.navbar .nav-item {
  position: relative;
}
.navbar .nav-item::after {
  content: "";
  width: 0px;
  height: 4px;
  background-color: #000;
  display: block;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: -48px;
  left: 50%;
}
.navbar .nav-item:last-child::after {
  height: 0px;
  transition: none;
  background-color: #fff;
}
.navbar .nav-item:hover::after,
.navbar .nav-item.active::after {
  width: 100%;
  left: 0px;
}
.navbar .dropdown-item.active, .navbar .dropdown-item:active{
  background-color: #a5a5a5;
}
.dropdown-menu > * {
  display: block;
}
.dropdown-menu > *:last-child {
  margin-bottom: 0px;
}
.dropdown-item {
  font-size: 1rem;
  padding: 5px 0;
  transition: all 0.3s ease-in-out;
}
.dropdown-item:hover {
  background-color: #000;
  color: #fff;
}
.nav-link:hover {
  color: #000;
}
.navbar > .container {
  position: relative;
  justify-content: center;
  row-gap: 20px;
}
.dropdown-toggle::after {
  content: none;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: end;
}
.navbar-expand-lg .navbar-nav {
  column-gap: 40px;
  row-gap: 15px;
}
.navbar-brand {
  width: auto;
}

.navbar-toggler {
  height: 25px;
  width: 30px;
  padding: 0px;
  position: relative;
  border: none !important;
  box-shadow: none !important;
}
.navbar-toggler-item {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--color-primary);
  position: absolute;
  transition: all 0.3s ease-in-out;
  left: 0px;
}
.navbar-toggler-item:first-child {
  top: 0px;
}
.navbar-toggler-item:nth-child(2) {
  top: 11px;
}
.navbar-toggler-item:last-child {
  bottom: 0px;
}

.nav-item.dropdown > a::after {
  content: "";
  display: inline-block;
  width: 23px; 
  height: 11px; 
  background-image: url(../Icons/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border:none;
}

.navbar-toggler:not(.collapsed) {
  .navbar-toggler-item:nth-child(2) {
    width: 0px;
    left: 50%;
  }
  .navbar-toggler-item:first-child {
    transform: rotate(45deg);
    top: 11px;
  }
  .navbar-toggler-item:last-child {
    transform: rotate(-45deg);
    bottom: 11px;
  }
}
@media screen and (max-width: 1751px){
  .navbar-expand-lg .navbar-collapse{
    justify-content: end;
  }
  .dropdown-item{
    font-size: 1.4rem;
    padding-left: 20px;
    padding-right: 20px;
  }
 
  .navbar-brand{
    max-width: 300px;
  }
}
@media screen and (min-width: 993px){
  .nav-item.dropdown:hover .dropdown-menu{
    display: block !important;
    margin-top: 0px !important;
  }
  .dropdown-item.px-5.py-3 {
    padding-left:2rem !important;
  }
}
@media screen and (max-width: 1700px) {
  .navbar > .container::before {
    right: -100px;
  }
}

@media screen and (max-width: 1399px) {

  .navbar-expand-lg .navbar-nav {
    column-gap: 15px;
  }
  .navbar-brand {
    max-width: 235px;
  }
  .navbar-expand-lg .navbar-collapse{
    justify-content: end;
  }
}
@media screen and (max-width: 1199px) {
  .navbar > .container::before {
    bottom: -30px;
  }
  .navbar > .container {
    flex-wrap: wrap;
  }
  .navbar-expand-lg .navbar-nav {
    column-gap: 25px;
  }
  .navbar-expand-lg .navbar-collapse {
    justify-content: end;
  }
}
@media screen and (max-width: 992px) {
  .navbar > .container::before {
    bottom: -15px;
  }
  .navbar .nav-item {
    width: 100%;
  }
      .navbar li.nav-item {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 19px;
    }
    .dropdown-item {
    font-size: 1rem; 
    font-weight: bold;
    }
    .navbar .dropdown-menu {
    border-radius: 0px;
    border: none;
    box-shadow: 0 15px 21px 0 #0000002e;
    margin-top: 15px;
    padding-bottom: 15px !important;
    padding-top: 15px !important;
}
.navbar .nav-link {
      font-weight: bolder !important;
}
  .navbar {
    box-shadow: 5px 0 10px 0 #00000062;
 
    width: 100%;
    background-color: #fff;
    top: 0px;
    z-index: 999;
  }
  .navbar > .container {
    justify-content: space-between;
  }
  .navbar-expand-lg .navbar-nav {
    margin-bottom: 0px;
  }
  .navbar-collapse.show .navbar-nav{
    margin-bottom: 25px;
  }
  .nav-item.dropdown::after {
    content: none;
  }
  .nav-item.dropdown > a::after {
   
            right: inherit;
        top: 15px;
  
}
}

 .navbar .nav-item:last-child a{

    background: #000;
    color: var(--white) !important;
       padding: 10px 18px 11px 18px !important;
        display: inline;
  border-radius:10px;
  font-size:1.1rem;

}

.navbar .nav-item:last-child a:hover {
  background: var(--color-primary);
}
.navbar .nav-item:last-child:hover::after {
  background-color: transparent;
  height: 0px;
}




.breadcrumb {
  text-align: right;
  align-items:flex-end;
  float:right;
  margin-bottom:0;
}
.breadcrumb {
  z-index: 999;
}
.breadcrumb li:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 16px;
  margin: 0 8px;
  background-image: url(../Icons/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
   transform: rotate(270deg);
   position: relative;
   top:2px;
}

.breadcrumb li::first-letter {
  text-transform: uppercase;
}
.breadcrumb li:last-child::after {
  background-image: none;
}
.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 0;
   margin-bottom:17px;
       margin-top: 8px;

}
.breadcrumb li:first-child {
  margin-right: 10px;
}
.breadcrumb li {
    
    text-transform: lowercase;
    font-size: 1rem;
    font-weight: 600;
}
.breadcrumb img {
  position: relative;
  top:-2px;
}

.breadcrumb, .breadcrumb a{
  font-size:1rem;
  color:#000;
  padding-right: 1px;
}

@media screen and (max-width: 640px) {
  .breadcrumb {
   float:left;
  }
  .navbar .nav-item.active::after {
    background-color: transparent;
  }
  .dropdown-menu.py-0.show a{
padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
}


@media (min-width: 1198px) and (max-width: 1402px) {
    .navbar-expand-lg .navbar-nav {
        column-gap: 30px;
    }
    .footer .button_belt {
    padding: 11px;
    margin: 17px;
    border: 1px solid #fff;
    font-size: 1rem;
    position: relative;
    top: 32px;
    font-size: 0.8rem;
}
}

.ri .nav-item.dropdown > a::after {
  filter: invert(100%) brightness(200%);
}

