
/* Navigation Section */

.head-section{
    width: 100%;
    height: 130px;
    background-color: white;
    display: flex;
    padding-bottom: 13px;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.5);
    position: fixed;
    top: 10px;
    z-index: 1000;
}
.logo-section{
    flex-basis: 28%;
    display: flex;
    background-color: white;
    padding-left: 120px;
    align-items: end;

}
.nav-section{
    flex-basis: 72%;
    background-color: white;
    text-transform: uppercase;
}
.logo{
    width: 220px;
    cursor: pointer;
}
.nav-1{
    background-color: white;
    height: 62px;
}

.nav-1-list{
    padding-right: 135px;
    display: flex;
    justify-content: flex-end;
}
.nav-1-list li{
    list-style-type: none;
    display: inline-block;
    color: rgb(112, 112, 112);
    font-size: 13px;
    font-weight: 500;
    padding: 25px 0 0 38px;
    cursor: pointer;
    transition: text-decoration 0.3s ease;
}
.nav-1-list li:hover{
    text-decoration: underline;
}
.nav-2{
    background-color: rgb(63, 0, 11);
}
.nav-2-list{
    display: inline-block;
}
.nav-2-list li{
    list-style-type: none;
    display: inline-block;
    color: rgb(254, 235, 208);
    font-size: 15px;
    padding: 18px 20px;
    cursor: pointer;
    background-color: rgb(63, 0, 11);
}
.nav-2-list li:hover{
    background-color: rgb(85, 59, 51);
}
.search-btn{
    display: inline;
    color: rgb(254, 235, 208);
    font-size: 30px;
    margin-left: 50px;
    cursor: pointer;
}
