* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
:root {
    --bg: #06101d;
    --panel: #102033;
    --accent: #4fd1c5;
    --text: #eff6ff;
    --muted: #bbcae7;
}
body {
    max-width: 100%;
    min-height: 100vh;
    font-size: 18px;
}
h1 {
    text-transform: capitalize;
}
.header {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid grey;
    margin-bottom: 30px;
    position: sticky;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    top: 0%;
    left: 0%;
}
.nav_group a{
  text-decoration: none;
  color: #000;
  border-radius: 10px
}
.menu-toggle{
  display: none;
}
.btn_btn-auth{
  background: gold;
}
.find_hub {
    display: flex;
    padding: 20px;
    width: 100%;
}
.find_logo {
    color: gold;
}
.overlay_left {
    width: 70%;
    display: flex;
    flex-direction: column;
}
.hero-slide {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
}
.search_bar {
    padding: 14px;
    align-items: center;
    width: 100%;
}
.search_bar input, button {
    padding: inherit;
    font-size: 16px;
    border-radius: 10px;
    outline: none;
    border: none;
}
.search{
  background: gold;
}
.search:hover{
  background: #555555;
}
.overlay_right {
    background: url("./profile.jpg") no-repeat;
    background-attachment: cover;
    background-position: fixed;
    height: auto;
    flex: 1;
}
.mini_card{
  border-radius: 10px;
  background: #e0e0e0;
  padding: 8px;
  text-transform: capitalize;
}
.providersbay{
  display: flex;
  width: 100%;
  gap: 20px;;
}
.mini_card2{
  border-radius: 10px;
  background: #e0e0e0;
  padding: 8px;
  width: 100%;
  text-transform: capitalize;
}
.footer{
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid grey;
    margin-top: 30px;
    position: sticky;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    top: 0%;
    left: 0%;
}
.footer_link{
  align-items: center;
  color: var(--muted);
  text-transform: capitalize;
}

@media screen and (max-width: 968px) {
    .overlay_right {
        display: none;
    }
    .overlay_left {
        width: 100%;
    }
  .nav_group{
    /* display: none; */
    top: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    display: none;
    flex-direction: column;
    background-color: #9d9d9d55;
    gap: 20px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  } 
  .menu-toggle{
    display: block;
  }
  .providersbay{
    flex-direction: column;
    gap: 20px;
  }
}
