.navcustom{
    padding: 70px 4% 0 4%;
}
.nav-content{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.nav-content__heading{
    font-size: 20px;
    color: var(--yellow);
    margin-bottom: 15px;
}
.nav-content__desc{
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}
.nav-list{
    margin: 0 auto;
}
.nav-list__item{
    padding: 0 50px;
    position: relative;
}
.nav-list__item::after{
    content: '';
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: calc(50% + 3px);
}
.nav-list__item:nth-child(3):after{
    display: none;
}
.nav-list__link{
    font-size: 14px;
    color: var(--yellow);
    text-decoration: underline;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
    background: none;
    outline: none;
    border: none;
}
.nav-list__link:hover{
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.appLink-list{
    margin-right: auto;
    justify-content: end;
}
.appLink-list__item1{
    margin-left: 15px;
}
.appLink-list__link{
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.appLink-list__overlay{
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: #000;
    opacity: 0.9;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}
.appLink-list__link:hover .appLink-list__overlay{
    transition: all 0.3s ease-in-out;
    top: 0;
    height: 100%;
}