.navbar {
    position: fixed;
    left: 0;
    top: 15px;
    width: 100%; 
    z-index: 1000; 
    padding: 10px 100px; 
}

.navbar__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(#732d2d, #6e5454f0);
    border-radius: 30px;
    padding: 10px 20px; 
}

.navbar__left{
    display: flex;
    align-items: center;
}
.nav__title{
    font-size: 18px;
    margin: 0px 7px;
    font-weight: 500;
    color: white;
}
.nav__img{
    width: 90px;
    height: 40px;
}
select{
    background: none;
    width: 50px;
    height: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    border: none;
    appearance: none;
    outline: none;
    padding-left: 4px;
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}
option{
    background-color: white;
    color: #000000;
}
.nav__btn{
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #c41515; 
    background-color: #F5F5F5;
    box-shadow: 0 4px 10px rgba(123, 30, 30, 0.3);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.nav__btn:hover {
    background-color: #F5F5F5; 
    box-shadow: 0 6px 15px rgba(156, 155, 155, 0.5); 
    transform: scale(1.02); 
}
.nav__btn:active {
    transform: scale(1.1);
}
.hum{
    display: none;
}
.bars{
    width: 30px;
    height: 3px;
    background-color: white;
    color: white;
    margin: 7px auto;
}

@media only screen and (max-width:800px) {
    .navbar__container{
        max-width: 600px;
    }
    .navbar__left{
        display: none;
    }
    .navbar__right{
        display: none;
    }
    .nav__logo{
        display: flex;
        justify-content: flex-start;
    }
    .hum{
        display: block;
    }
}
@media only screen and (max-width:600px) {
    .navbar__container{
        max-width: 370px;
    }
}

@media only screen and (max-width:450px) {
    .navbar__container{
        max-width: 280px;
    }
}
