@media(min-width:768px){
    .header-top {
    padding: 0;
    position: relative;
    background: var(--theme-color);
    z-index: 1;
}

.header-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 30%;
    /*background: var(--theme-color);*/
    z-index: -1
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 7px;
    /* justify-content: space-between; */
    /* width: fit-content; */
    margin: 0 auto;
}

.header-top-contact ul li {
    display: flex;
    gap: 10px;
    border-right: 0px solid rgba(255, 255, 255, .2);
    padding-right: 1rem;
}

.header-top-contact ul li:last-child {
    border: none;
    padding-right: 0
}

.header-top-contact ul li a {
    color: #fff !important;
    font-weight: 400;
    /* padding: 0; */
}

.header-top-contact ul li .btn {
    background: #ffffff;
    padding: 2px 8px;
    font-size: 13px;
    border-radius: 2px;
    color: #000 !important
}

.header-top-contact ul li a i {
    color: #f8c301;
    margin-right: 5px
}

.header-top-social span {
    color: #fff;
    font-weight: 500
}

.header-top-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff !important;
    font-size: 16px;
    background: var(--theme-color);
    text-align: center;
    margin-left: 0px;
    border-radius: 50px;
    transition: all .5s ease-in-out;
    display: inline-block;
}

.header-top-social a:hover {
    
}


}
@media  (max-width:767px) {
      .header-top {
    padding: 0;
    position: relative;
    background: var(--theme-color);
    z-index: 1;
}

.header-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: -1px;
    width: 30%;
    /*background: var(--theme-color);*/
    z-index: -1
}

.header-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 3px;
}

.header-top-contact ul {
    display: flex;
    align-items: center;
    gap: 7px;
    /* justify-content: space-between; */
    /* width: fit-content; */
    margin: 0 auto;
}

.header-top-contact ul li {
    display: flex;
    gap: 10px;
    border-right: 0px solid rgba(255, 255, 255, .2);
    padding-right: 1rem;
}

.header-top-contact ul li:last-child {
    border: none;
    padding-right: 0
}

.header-top-contact ul li a {
    color: #fff;
    font-weight: 400;
    /* padding: 0; */
}

.header-top-contact ul li .btn {
    background: #ffffff;
    padding: 2px 8px;
    font-size: 13px;
    border-radius: 2px;
    color: #000 !important
}

.header-top-contact ul li a i {
    color: #f8c301;
    margin-right: 5px
}

.header-top-social span {
    color: #fff;
    font-weight: 500
}

.header-top-social a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    font-size: 16px;
    background: var(--theme-color);
    text-align: center;
    margin-left: 0px;
    border-radius: 50px;
    transition: all .5s ease-in-out;
    display: inline-block;
}

.header-top-social a:hover {
    color: var(--theme-color2)
}



}