.about-text{
    position: absolute;
    text-align: center;
    top: 50%;
    color: #fff;
    width: 100%;
    margin-top: -44px;
}
.nav-group{
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    /* height: 90px; */
}
.nav-group .sub-nav{
    justify-content: center;
    display: flex;
    padding: 0;
}
.sub-nav .nav-item{
    /* height: 90px; */
    flex: 1;
    border-left: solid 1px #aaa;
    cursor: pointer;
    padding: 10px 0;
    list-style: none;
}
.sub-nav .nav-item:hover{
  background: rgba(255, 85, 107, 0.7);
}
.sub-nav .nav-item:last-child{
    border-right: solid 1px #aaa;
}
.sub-nav .nav-item.active{
    background: linear-gradient(135deg,var(--primary),var(--secondary));

}
.sub-nav .nav-link{
    background: none;
    padding: 0;
    border-radius: 0;
    color: #fff;
}

.sub-nav .nav-link img{
    width: fit-content;
    margin-bottom: 5px;
}
.sub-nav .nav-link.active{
    border-radius: 0;
    padding: 0;
}
.bottom-shadow{
    box-shadow: 0 10px 10px #eee;

}
.third-nav{
    flex-wrap: wrap;
}
.third-nav-item{
    min-width: calc(20% - 10px);
    margin: 5px 5px 0;
}
.third-nav .third-nav-item.active{
    color: var(--primary);
}
.third-nav .third-nav-item:hover{
    cursor: pointer;
    color:  var(--primary);
}
@media (max-width: 992px){
    .banner{
        height: 180px;
    }
    .sub-nav .nav-link img{
        width: 25px;
    }
    .sub-nav .nav-link>div{
        font-size: 14px;
    }
}