header {
    background-color: #cc0033;
}

header ul {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    margin: 0px;
    padding: 5px 0px;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 100%;
}

header ul li {
    display: flex;
    flex-shrink: 0;
}

header ul li:nth-child(1) {
    flex-shrink: 0; 
    margin-right: auto; 
    position: sticky; 
    left: 0;
    background-color: #cc0033;
}

header ul li img {
    max-width: 150px; 
    height: auto; 
    object-fit: contain;
    transition: transform 0.3s ease;
    padding-top: 5px;
}

header ul li a {
    transform: scale(1.1);
}


header ul  li a img:hover {
    transform: scale(1.1);
}


header ul li:nth-child(2) {
    display: flex;
    align-items: center;
    background-color: #cc244e;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-grow: 0;
    max-width: auto;
    font-size: 14px;
}

header ul li:nth-child(2) a {
    color: #ffffff; 
    padding: 0px;
}

header ul li:nth-child(2) a span {
    font-family: "Genos", sans-serif;   
    font-size: 16px;
    justify-content: center;
    
}

header ul li:nth-child(2) i.fa.fa-location-dot {
    margin-right: 6px;
    font-size: 12px;
}

header ul li:nth-child(2) i.fa.fa-angle-right {
    margin-left: 70px;
    font-size: 12px;
}

header ul li:nth-child(2):hover {
    background-color: #d37272;
    transition: all 0.33s ease;
}

header ul li:nth-child(3) {
    position: relative;
}

header ul li:nth-child(3) input {
    height: 30px;
    width: 450px;
    border-radius: 10px;
    border: none;
    padding-left: 10px;
    padding-top: 5px;
    outline: none;
}

header ul li:nth-child(3) i {
    position: absolute;
    font-size: 15px;
    right: 12px;
    color: black;
    line-height: 34px;
    cursor: pointer;
}

header ul li:nth-child(4) button,
header ul li:nth-child(5) button {
    font-size: 15px;
    height: 45px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 25px;
    transition: all 0.33s ease;
    font-family: "Genos", sans-serif;
    text-align: center;
}

header ul li:nth-child(4) button:hover,
header ul li:nth-child(5) button:hover {
    background-color: #d37272;
}

header ul li:nth-child(4) button i,
header ul li:nth-child(5) button i {
    margin-right: 6px;
}

