/*==========HEADER_FIXED==========*/
.header-show{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    width: 100%;
    background-color: #202023;
    height: 57.5px;
}
.fixed-cont{
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-fixed{
    display: none;
}
.fixed-r{
    color: #CCCCCC;
    font-size: 17px;
    margin-left: 10px;
    text-decoration: none;
}
.fixed-numb{
    display: inline-flex;
    align-items: center;
}
@media(max-width: 775px){
    .header-show{
        display: none;
    }
}

.top-fixed {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-left: 0px;
    transition: all 0.2s ease-in;
    gap: 10px;
}

.top-fixed a{
    text-decoration: none;
}
.nav-line-fixed ul{
    list-style: none;
}

.text-fixed{
    padding-top: 26px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 16px;
    color: #CCCCCC;
    transition: color 0.2s linear;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}


.text-fixed:hover{
    background-color: #333333;
    border-bottom: 3px solid #e4e0e0;
}

.menu-fixed {
    position: absolute;
    background-color: #e4e0e0;
    padding: 0;
    margin-top: 10px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s;
    margin-top: 15px;
}

.menu-fixed li::after{
    content: "";
    display: block;
    width: 30px;
    height: 0.2px;
    background-color: #8686866f;
    border-radius: 20px;
}


.services-container-fixed ul li a{
    display: block;
    transition: background-color 0.3s ease-in-out;
    line-height: 40px;
    color: #000000;
    padding: 0px 20px;
    padding-right: 70px;
    text-align: left;
}
