.header{
   background: #16191C;
   color: #fff;
   display: flex;
   align-items: center;
   height: 68px;
   position: fixed;
     z-index: 1000;
     width: 100%;
}

.container{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
    box-sizing: border-box;
}

.logo{
    height: 31px;
    margin-right: 100px;
}

.navbar{
    display: flex;
    align-items: center;
    flex: 1;
}
.nav-list{
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.nav-item{
     position: relative;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 2px dotted transparent;
}

.active .nav-link{
    border-bottom: 2px solid #FFFFFF;
}

.user-icon{
   height: 30px;
   width: 30px;  
   margin-left: 12px;
}


.foot{
   height: 160px !important;
   background-color: #000000; 

}

.foot-content{
    height: 100%;
    max-width: 1440px;
    display: flex; 
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;

}
.foot-left{
     color: #FFFFFF;
     font-size: 18px;; 
}

.foot-right{
    display: flex;
    align-items: center;
    gap: 31px;
}
.foot-itme{
   text-align: center;

}
.foot-itme img{
   width: 90px;
   height: 90px;
}
.foot-text{
    font-weight: 400;
    font-size: 9px;
    color: #FFFFFF;
}

.tel-box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.tel-text{
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}


