.menu-top{
    border-bottom: 1px solid rgba(248, 242, 232, 0.17);
    margin-bottom: 3px;
    width: 100%;
}

.menu-container{
    width: 100%;
    padding-bottom: 34px;
    display: flex;
    flex-direction: row;
}

.menu-header{
    width: 50%;
}

.menu-header h1{
    margin-right: 44px;
    margin-bottom: 0px;
    font-family: 'Six Caps', sans-serif;
    color: #e032d1;
    line-height: 98%;
    font-weight: 400;
    text-transform: uppercase;
}

.menu-header-desc{
    padding-left: 44px;
    border-left: 1px solid rgba(248, 242, 232, 0.17);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.menu-header-desc p{
    font-size: 20px;
    margin-bottom: 6px;
}


.menu-main{
    border-top: 1px solid rgba(248, 242, 232, 0.17);
    width: 100%;
}

.menu-heading-container{
    width: 100%;
    display:flex;
    flex-direction: row;
    margin-top: 74px;
    margin-bottom: 30px;
    justify-content: flex-start;
    align-items: center;
}

.circle-icon{
    display: flex;
    flex-direction: row;
    margin-right: 24px;
    justify-content: center;
    align-items: center;
}

.circle-a {
    width: 5px;
    height: 5px;
    margin-right: 4px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 100%;
    background-color: #e032d1;
}

.circle-b {
    width: 11px;
    height: 11px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 100%;
    background-color: #e032d1;
}

.menu-h h2{
    margin-top: 0px;
    color: #f8f2e8;
    font-size: 44px;
    line-height: 112%;
    font-weight: 500;
}

.menu-main-content{
    width: 100%;
    border-top: 1px solid rgba(248, 242, 232, 0.17);
}

.menu-layout-grid{
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.5fr;
    padding: 24px 0;
    border-bottom: 1px dashed rgba(248, 242, 232, 0.17);
    align-items: center;
    gap: 20px;
}

.menu-layout-grid h5{
    color: #f8f2e8;
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    text-transform: uppercase;
}

.menu-layout-grid h6{
    color: #f8f2e8;
    font-size: 18px;
    line-height: 160%;
    font-weight: 500;
    text-align: right;
}





@media screen and (min-width : 320px) {
    .menu-container{
        flex-direction: column;
        gap: 30px;
    }

    .menu-header{
        width: 100%;
    }

    .menu-header h1{
        font-size: 20vw;
        text-align: left;
    }

    .menu-header-desc{
        width: 100%;
        border-left-style: none;
        border-top: 1px solid rgba(248, 242, 232, 0.17);
        padding-top: 30px;
        padding-left: 0px;
    }

    .menu-heading-container{
        margin-top: 55px;
    }

    .circle-icon{
        margin-right: 18px;
    }

    .menu-h h2{
        font-size: 32px;
    }

    .menu-layout-grid h5{
        font-size: 14px;
    }

    .menu-layout-grid p{
        font-size: 14px;
    }
}

@media screen and (min-width : 768px) {
    .menu-container{
        flex-direction: row;
        gap: 0;
    }

    .menu-header{
        width: 50%;
    }

    .menu-header-desc{
        width: 50%;
        border-left: 1px solid rgba(248, 242, 232, 0.17);
        border-top-style: none;
        padding-left: 44px;
        padding-top: 0;
    }

    .menu-header h1{
        font-size: 15vw;
    }

    .menu-h h2{
        font-size: 38px;
    }

    .menu-layout-grid h5{
        font-size: 16px;
    }
}

@media screen and (min-width :1024px) {
    .menu-header h1{
        font-size: 10vw;
    }
    .menu-layout-grid p{
        font-size: unset;
    }
}

