.header-web {
    left: 0;
    right: 0;
    z-index: 2;
    top: 0;
    margin: 0 auto;
    position: fixed !important;
    display: block;
    max-width: 1700px;
    padding: 10px 100px 15px 100px;
    border-bottom: 1px solid #f3f3f3;
    background-color: #ffffff;
}
.header-mob{
    display: none;
    padding: 10px;
    border-bottom: 1px solid #f3f3f3;
    background-color: #ffffff;
}
.header-mob-left-box{
    display: flex;  
    gap: 5px;
    align-items: center;
}
.header-mob-right-box{
    display: flex;
    justify-content: end;
    gap: 5px;
    align-items: center;
}
.header-mob-menu-icon{
    margin-left: 5px;
}
.header-mob-bar{
    width: 25px;
    height: 25px;
}
.header-mob-profile{
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 2px solid #6160eb;
    background-color: #6160eb;
    line-height: 1.8;
    text-align: center;
    display: inline-block;
}
.logo-mob{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}
.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 19px;
}
.header-nav-center{
    display: flex;
    justify-content: end;
}
.header-center-menu{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 0;   
}
.header-nav-right{
    display: flex;
    justify-content: end;
}
.header-right-menu{
   display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 0; 
}
/*header dropdown*/
.header-dropdown{
    list-style: none;
}
.header-dropdown-list{
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-menu-dropdown-icon{
    vertical-align: middle;
}
.header-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 1px 0px 0px rgb(63 63 63 / 20%);
    z-index: 2;
    margin-top: 1px;
    border-radius: 6px;
    border: 1px solid #c2c2c5;
    cursor: pointer;
}

.header-dropdown-content-list{
    border-bottom: 1px solid #dddde2;
    padding: 10px;
    margin-top: 0;
}
.header-dropdown-content-list:last-child{
    border-bottom: none;
}

.header-dropdown-content-list-menu{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-dropdown:hover > .header-dropdown-content {
        display: block;
    }
.header-dropdown-content li a:hover {
    color: #fe7405;
}


.header-mob-nav-bar{
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}
/*header dropdown end*/

/*footer*/
.footer{
    margin-top: 20px;
    background: #f4f1f1;
    padding: 30px 100px 30px 100px;
}
.footer-column{
    margin-bottom: 10px;
}

/*.footer-bottom{
    padding-bottom: 10px;
}*/

.footer-bottom-right{
    display: flex;
    justify-content: end;
}

.footer-bottom-list{
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.footer-bottom-list li{
    margin-top: 0;
}


@media (min-width: 761px) and (max-width: 991px) {
    .header-web{
        display: none;
    }
    .header-mob{
        display: block;
    }
    /*footer*/
    .footer {
        padding: 20px 30px 0 30px;
    }
    .footer-bottom{
         margin: 20px 30px 0 30px;
    }
    .footer-bottom-list{
        justify-content: center;
        margin-bottom: 10px;
    }
    /*footer end*/
}

@media (min-width: 480px) and (max-width: 760px) {
    .header{
        margin: 0 60px 0 60px;
    }
    .header-web{
        display: none;
    }
    .header-mob{
        display: block;
    }
    .header-left{
        justify-content: center;
    }
    .header-right{
        justify-content: center;
    }
    /*footer*/
    .footer {
        padding: 20px 30px 0 30px;
    }
    .footer-bottom{
         margin: 20px 30px 0 30px;
    }
    .footer-bottom-right{
        display: flex;
        justify-content: center;
    }
    .footer-bottom-list{
        justify-content: center;
        margin-bottom: 10px;
    }
    /*footer end*/
}

@media (min-width: 320px) and (max-width: 479px) {
    .header{
        margin: 0 30px 0 30px;
    }
    .header-web{
        display: none;
    }
    .header-mob{
        display: block;
    }
    .header-left{
        justify-content: center;
    }
    .header-right{
        justify-content: center;
    }
    /*footer*/
    .footer {
        padding: 20px 10px 0 10px;
    }
    .footer-bottom{
         margin: 20px 10px 0 10px;
    }
    .footer-bottom-right{
        display: flex;
        justify-content: center;
    }
    .footer-bottom-list{
        justify-content: center;
        margin-bottom: 10px;
        gap: 7px;
    }
    /*footer end*/
}