/* MAIN HOME START */

.main_home {
    flex: 1;
}

.home__menu {
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    grid-auto-rows: min-content;
    gap: 6px;
    justify-content: center;
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(3, 39, 35, 0.05);
    background-color: #FFFFFF;
    border-radius: 24px;
    width: 1239px;
    margin: 0 auto;
    box-sizing: border-box;
    /* top: -100px;
    position: relative;
    z-index: 10; */
    margin-bottom: 70px;
    margin-top: 70px;
}


.row-menu {
    display: flex;
    column-gap: 20px;
    margin-bottom: 20px;
}

.menu-link {
    width: 390.75px;
    height: 200px;
    background: #FAFAFA;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 52px 0 44px 0;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.menu-link--big {
    width: 386.33px;
    height: 300px;
    background: #FAFAFA;
    border-radius: 12px;
    padding: 92px 0 44px 0;
    box-sizing: border-box;
    text-decoration: none;
}

.menu-link img {
    height: 64px;
    width: 64px;
    margin: 0 auto;
    display: block;
}

.menu-img {
    background-color: #FAFAFA;
    height: 64px;
    width: 64px;
    margin: 0 auto;
    display: block;
}

.menu-link:hover p,
.dropdown-btn:hover p,
.menu-link--big:hover p {
    color: #FFFF;
}

.menu-link:hover,
.menu-link--big:hover,
.dropdown-btn:hover {
    background: #003730;
}

.menu-link:hover .menu-img img {
    background: #003730;
}

.menu-link:hover img {
    filter: url(#filter_C );
}

.menu-link--big:hover img {
    filter: url(#filter_C );
}

.menu__text {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    text-align: center;
    margin-top: 20px;
}


.category-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #003730;
    margin-top: 100px;
}

.category-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #323232;
    margin-top: 15px;
    margin-bottom: 40px;
}

.menu-dropdown {
    background: #FFFFFF;
    box-shadow: 0px 6px 15px rgba(3, 39, 35, 0.05);
    border-radius: 24px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;

    width: 275.25px;
    box-sizing: border-box;
    background: #FAFAFA;
    border-radius: 24px;
    padding: 25px 32px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    border: none;
    cursor: pointer;
}

.dropdown-img img {
    height: 42px;
    width: 42px;
}

.row__menu--dropdown {
    display: flex;
    column-gap: 20px;
    margin-bottom: 20px;
}

.return-button {
    background-color: #FAFAFA;
    border: none;
    cursor: pointer;
    height: 42px;
    width: 42px;
    background-image: url('/static/img/svg/chevron-left.svg');
}

.menu-dropdown--two {
    margin-bottom: 50px;
}

.current-item {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 25px 0;
    box-sizing: border-box;

    display: flex;
    align-items: center;
}

.return-btn {
    background-color: #FAFAFA;
    border: none;
    cursor: pointer;
}

.current-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #003730;

    margin-left: 10px;
}

.home__menu__side {
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(3, 39, 35, 0.05);
    background-color: #FFFFFF;
    border-radius: 24px;
    width: 1239px;
    margin: 0 auto;
    box-sizing: border-box;
    /* top: -150px;
    position: relative;
    z-index: 10; */
    margin-bottom: 70px;
    margin-top: 70px;
}

.dropdown__menu {
    display: flex;
    column-gap: 10px;

    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    grid-auto-rows: min-content;
    grid-gap: 6px;
    justify-content: center;
}

.dropdown-list {
    padding: 25px 127px 25px 25px;
    background: #FAFAFA;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
}

.dropdown-list li {
    margin-bottom: 24px;
}

.dropdown-list li.last {
    margin-bottom: 0;
}

.dropdown-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #323232;
    text-decoration: none;
}



.dropdown-link:hover {
    text-decoration: underline;
}

/* MAIN HOME END */