header {
  /* position: sticky; */
  /* top: 0; */
  /* z-index: 10; */
}

.header-container {
  position: relative;
}

.header-time-address {
  background-color: var(--red-primary);
  font-size: 0.8rem !important;
  color: var(--text-white) !important;
}

.header-time-address .container {
  /* display: flex;
      flex-direction: row ; */
  /* justify-content: space-between; */
  padding: 1rem 0 !important;
}

.header-time-address .container .row > div {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important ;
  /* background-color: aqua; */
}

.widget {
  margin-left: auto;
}

.widget .list-inline {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}

.header-contact-icon {
  color: var(--red-primary);
  font-size: 1rem;
}

.header-contacts > div a {
  color: var(--text-blue);
}

.header-contacts > div p {
  font-size: 0.8rem;
  font-weight: 600;
}

/* .navbar-collapse.collapse.show{
    border: none;
    background-color: red;
  } */

.navbar-toggler.collapsed {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.header-bank-img {
  max-width: 250px;
  object-fit: contain;
}

nav ul li {
  border-radius: 2px;
  transition: var(--transition-200);
}

/* nav ul li:hover {
    background-color: var(--red-primary);
  } */

nav a {
  /* color: var(--text-white) !important; */
  font-size: 1.8rem;
  font-weight: 500 !important;
  transition: var(--transition-350);
}

nav a:hover {
  /* color: var(--text-white) !important; */
  color: var(--red-primary) !important;
  font-weight: 500 !important;
}

.header-contacts {
  font-size: 1rem !important;
}

#bank-logo {
  --w: 40px;
  width: var(--w);
  height: var(--w);
}

.sj-nav {
  border-bottom: 2px solid var(--text-gray-2);
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

#header-bank-name {
  font-weight: bolder;
  font-size: 1.4rem;
}
#header-bank-name:hover {
  font-weight: bold;
}

.sj-nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Add any additional styles for the sticky state */
  z-index: 10;
  background-color: var(--text-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add box shadow */
}

/* .nav-item > a:hover {
  background-color: var(--red-primary);
} */

#recruitment-link {
  font-weight: bold !important;
  /* background-color: var(--red-primary); */
  background: #b93f32;
  color: white;
  letter-spacing: 1px;
  border-radius: 5px;
  animation: 600ms linear infinite alternate blink;
}
#recruitment-link:hover {
  font-weight: bold !important;
  /* background-color: var(--red-primary); */
  background: #b93f32;
  color: white !important;
  animation: 1.4s linear infinite alternate blink;
}

.dropdown-menu {
  border-radius: 4px;
  border: 0.5px solid var(--text-gray-2) !important;
  padding-left: 0px;
}

.dropdown-menu .dropdown-item {
  color: var(--text-gray) !important;
  font-size: 0.8rem;
  transition: var(--transition-100);
}

@keyframes blink {
  0% {
    /* color: white; */
  }
  100% {
    background: #5d0b02;
    /* background: var(--red-primary); */
  }
}

.dropdown-menu .dropdown-item:hover {
  /* background-color: var(--red-primary); */
  color: var(--red-primary) !important;
  margin-left: 4px;
  transition: var(--transition-200);
  font-weight: bold;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}


@media screen and (max-width: 768px) {
 
  #header-bank-name {
    font-size: 0.9rem;
  }
}


@media screen and (max-width: 576px) {
  .header-bank-img {
    max-width: 150px;
  }

  header {
    font-size: 85%;
  }

  #header-bank-name {
    font-size: 0.8rem;
  }
}
