.mainmenu {
    color:#000000;
    transition: all 0.3s ease; /* Плавное появление/скрытие */
}

.mainmenu.mainmenu--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background-color: var(--sika-yellow);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Легкая тень */
}

.mainmenu.mainmenu--fixed .mainmenu__list {
    background-color: var(--sika-yellow);
}

@media only screen and (min-width: 1280px) {
    .mainmenu {
        position: absolute;
        width: 100%;
        left: 0;
		bottom: -30px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (min-width: 1440px) {
    .mainmenu {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: -40px;
        padding-left: 130px;
        padding-right: 40px
    }
}

.mainmenu h6 {
    font-weight: 700;
    border-bottom: 2px solid #3c3c3c;
    margin-bottom: 10px
}

.mainmenu__list {
    background: #fff;
    z-index: 5;
    position: relative;
    height: 70px;
    display: flex;
    justify-content: left;
    align-items: center;
    /*padding: 0 15px !important*/
}

.mainmenu__list-item {
    padding: 0 15px;
    display: flex;
    align-items: center;
    cursor: pointer
}

.mainmenu__list-item:not(:last-child) .mainmenu__list-item-name:after {
    content: "";
    width: 1px;
    background-color: #e0e0e0;
    height: 60%;
    position: absolute;
    right: -15px;
    top: 0.3em;
}

.mainmenu__list-item-name {
    position: relative;
    height: 100%;
    align-items: center
}

.mainmenu__list-item-name a {
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    color:#000!important
}

.mainmenu__list-subitem,
.mainmenu__list-subitem.grid-x {
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    flex-wrap: wrap;
    width: 100%;
    text-align: left;
    display: none
}

.mainmenu__list-subitem.active {
    display: flex;    
	max-height: 500px;
    overflow-y: scroll;
}

.mainmenu__list-subitem a {
    display: block;
    color: #000 !important;
    padding: 6px 0;
    border-bottom: 2px solid #e0e0e0
}

.mainmenu__list-subitemList {
    width: 100%;
    padding: 20px
}

.mainmenu__list-subitemList li {
    transition: all .3s ease-in
}

.mainmenu__list-subitemList li:hover a {
    /*color: #ffc510 !important;*/
    border-bottom: 2px solid #ffc510
}

.mainmenu__list-subitem-link {
    border-bottom: none !important;
    padding: 0 !important
}