.sub__header{
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 60px;
    background:var(--main-white-color);
    z-index: 996;
}

.sub__header .container__layout{
    padding: 0 70px;
    height: 100%;
}

.sub__header .sub__header--list{
    display: flex;
    gap: 24px;
    height: 100%;
    align-items: center;
    border-bottom: 1px solid var(--light-grey-color);
}

.sub__header .sub__header--list .sub__header--item{
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition:  all linear 0.3s;
    position: relative;
}
.sub__header .sub__header--list .sub__header--item::after{
    content: "";
    position: absolute;
    bottom: -2%;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: transparent;
    transition: all linear 0.3s;
}

.sub__header .sub__header--list .sub__header--item:hover:after,
.sub__header .sub__header--list .sub__header--item.active:after{
    background-color: var(--primary-color);
    transition: all linear 0.3s;
}

.sub__header .sub__header--list .sub__header--item p{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: var(--light-grey-color);
    transition:  all linear 0.3s;

}

.sub__header .sub__header--list .sub__header--item:hover,
.sub__header .sub__header--list .sub__header--item.active{
    transition:  all linear 0.3s;

}

.sub__header .sub__header--list .sub__header--item:hover p,
.sub__header .sub__header--list .sub__header--item.active p{
    color: var(--main-black-color);
    transition:  all linear 0.3s;
}
