.navbar {
	/*position: relative !important;*/
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-frost {
  /*position: absolute;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(230, 230, 230, 0.7);
  z-index: 1020;
}

.sticky-user {
	top: calc(60px + 3rem);
}

.logo {
    margin-right: 10px; /* Adjust the margin as needed */
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.line1 {
    font-weight: bold;
    font-size: 20px; /* Adjust the font size as needed */
    color: #77030E;
}

.line2 {
    font-size: 14px; /* Adjust the font size as needed */
    color: #1E1E1E; /* Adjust the color as needed */
}

.searchBar {
    margin-bottom: auto;
    position: relative;
    margin-top: auto;
    height: 60px;
    background-color: #77030E;
    border-radius: 30px;
    padding: 10px;
}

.searchInput {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

.searchBar:hover > .searchInput,
.searchBar:focus-within > .searchInput,
.searchInput:not(:placeholder-shown) {
    padding: 0 10px;
    width: 320px;
    caret-color: red;
    transition: width 0.4s linear;
}
@media (max-width: 768px) {
	.searchBar:hover > .searchInput,
	.searchBar:focus-within > .searchInput,
	.searchInput:not(:placeholder-shown) {
    		padding: 0 10px;
    		width: 280px;
    		caret-color: red;
    		transition: width 0.4s linear;
	}
	.searchBar:hover > .advancedSearchLink {
  		display: block;
	}
}
.searchBar:hover > .searchIcon,
.searchBar:focus-within > .searchIcon,
.searchInput:not(:placeholder-shown) + .searchIcon {
    background: white;
    color: #e74c3c;
    border-radius: 50%;
}

.searchIcon {
    height: 40px;
    width: 40px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 0;
    background: none;
    text-decoration: none;
}

.advancedSearchLink {
  position: absolute;
  top: calc(50% + 30px);
  right: 15px;
  display: none;
  /*padding: 10px;
  background: #fff;
  color: #333;
  border-radius: 4px;*/
  text-decoration: none;
}

.searchBar:hover > .advancedSearchLink ,
.searchBar:focus-within > .advancedSearchLink,
.searchInput:not(:placeholder-shown) + .advancedSearchLink {
  display: block;
}

.container hr{
    height:1px;border-top:3px solid #423e31;
}
.footer .credits {
	font-size: 1em;
}
