/* Sub Navbar */

.sub-header-container {
  background-color: #3d3d3d;
  padding: 20px 50px;
  display: flex;
  gap: 50px;
  color: #fff;
  font-size: 0.8rem;
}

.hotline-wrapper {
  display: flex;
  align-items: center;
  font-family: var(--secondary-font);
  gap: 10px;
}

/* Navbar */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  /* box-shadow: 0px 1px 4px #8a8989; */
}

.hidden {
  transform: translateY(-100%);
}

.st-leos-logo-wrapper {
  width: 20%;
}

.st-leos-logo-wrapper img {
  width: 150px;
}

/* Toggle Menu */
.toggle-menu {
  display: none;
}

/* Links */
.navbar-links-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 50px;
  /* background-color: yellow; */
  font-family: var(--secondary-font);
  width: 60%;
}

.navbar-links-wrapper li a {
  color: #000;
}

.navbar-anchor-wrapper {
  display: flex;
  gap: 20px;
}

.book-appointment-btn {
  /* padding: 10px 20px; */
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  border-radius: var(--button-border);
  color: #fff;
  background-color: var(--primary-blue);
}

.book-appointment-btn:hover {
  background-color: #0e3486;
}

/* Bread Crumb Navigation */
.crumb-navigation-container {
  width: 100%;
  height: 450px;
  background-image: url("../Assets/Images/DSC_checkup.jpg");
  background-position: center;
  background-size: cover;
  /* background-color: wheat; */
}

.crumb-nav-overlay {
  background-color: #000000b0;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px;
  font-family: var(--secondary-font);
  width: 100%;
  height: 100%;
}

.crumb-nav-overlay h2 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  color: #fff;
}

.bread-crumb-text {
  display: flex;
  gap: 10px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  /* background-color: yellow; */
}

.bread-crumb-text a {
  color: #fff;
}

.bread-crumb-text a:hover {
  color: var(--primary-blue);
}

@media (max-width: 867px) {
  .sub-header-container {
    display: none;
  }

  .navbar-container {
    padding: 20px;
    /* position: relative; */
  }

  .toggle-menu {
    background-color: var(--primary-blue);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
  }

  .toggle-menu:hover {
    /* transform: rotate(-30deg); */
    transition: 0.3s ease-in-out;
  }

  .navbar-links-wrapper {
    display: none;
  }

  .book-appointment-btn {
    font-family: var(--secondary-font);
  }

  /* Crumb Bread Menu */
  .crumb-navigation-container {
    height: 350px;
  }

  .crumb-nav-overlay {
    gap: 10px;
    padding: 50px 20px;
    align-items: flex-start;
  }

  .bread-crumb-text {
    font-weight: 400;
  }
}

/* SIDEBAR */

.sidebar-container {
  position: fixed;
  z-index: 8;
  /* background-color: blue; */
  background-color: #fff;
  padding: 20px 50px;
  left: 0;
  top: 0;
  width: 80%;
  height: 100vh;
  transform: translateX(-100%);
  transition: 0.2s all ease-in;
  overflow-y: auto;
  border-radius: 100%;
}

.slidebar {
  transition: 0.2s all linear;
  transform: translateX(0);
  border-radius: 0;
}

.sidebar-logo img {
  width: 150px;
}

.sidebar-links-wrapper {
  /* background-color: yellowgreen; */
  line-height: 3;
  font-family: var(--secondary-font);
  /* text-transform: uppercase; */
  margin: 20px 0;
}

.sidebar-links-wrapper li {
  /* padding: 10px; */
  font-weight: 500;
}

.sidebar-links-wrapper li a {
  color: #3d3d3d;
  transition: 0.2s all line;
}

.sidebar-links-wrapper li a:hover {
  color: var(--primary-blue);
  transition: 0.2s all line;
}

/* Scroll to the Top */

.scroll-top-wrapper {
  position: fixed;
  bottom: 5vh;
  right: 0px;
  width: 70px;
  padding: 5px;
  z-index: 4;
  border-radius: 24px 0px 0px 24px;
  /* background-color: var(--primary-blue); */
  transform: translateX(100px);
  transition: 0.3s all linear;
}

.scroll-top {
  background-color: var(--primary-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

/* Show Scroll top */
.show-top {
  transform: translateX(0);
  transition: 0.3s all linear;
}
