﻿:root {
    --color-white-100: white;
    --color-white-200: #e4e6e7;
    --color-white-300: #c9cccf;
    --color-white-400: #949a9e;
    --color-white-500: #798086;
    --color-black-100: #101419;
    --color-black-200: #0c0f13;
    --color-black-300: #0c0f13;
    --color-black-400: #080a0c;
    --color-black-500: #060709;
    --color-pink-100: #fbd0e8;
    --color-pink-200: #f8a0d0;
    --color-pink-300: #f471b5;
    --color-pink-400: #ec4699;
    --color-pink-500: #da2576;
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black-500);
    background-color: var(--color-white-100);
}

a, button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}



.container {
    max-width: 98rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
}

.header1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .navbar1 {
        position: fixed;
        top: 0;
        left: -100%;
       width: 100%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: var(--shadow-medium);
        
        transition: all 0.5s ease;
    }

        .navbar1.active {
            left: 0rem;
            opacity: 1;
            width:100%;
            visibility: visible;
        }
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 1.5rem;
}

.menu-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: #000000;
    transition: all 0.3s ease-in-out;
    background: #F8F8F8;
    border: 1px solid #D8D8D8;
    border-radius: 3px;
    /*border-bottom:0px!important;*/
}

    .menu-link > i.bx {
        font-size: 1.35rem;
        line-height: 1.5;
        color: inherit;
    }

    

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover > .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .menu {
               width: 75%;
        padding: 20px 20px;
        background-color: var(--color-white-100);
        height: 100%;
    }

    .menu-item {
        display: block;
        margin:auto;
    }
    .menuimg img
    {
        margin-right:10px;
		        width: 40px;
    }

    .menu-link {
        padding: 0.50rem 0.50rem;
        margin-bottom: 10px;
        margin-right: 0px;
        width: 100%;
        display: block;
    }
}
.scroll{
	height: 100px;
    overflow: scroll;
	
}
.submenu {
    position: absolute;
    top: 2.35rem;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 0 1rem 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 0 0 0.25rem 0.25rem;
    /*border-top: 2px solid var(--color-pink-400);*/
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
}

.submenu-item {
    margin-top: 0.50rem;
    padding-bottom: 0.50rem;
}

.submenu-link {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: #505050 !important;
    transition: all 0.35s ease;
}

    .submenu-link:hover {
        outline: none;
        color: var(--color-pink-500);
    }

    .alala{
        margin:auto;
        margin-left:auto;
        margin-right:10px;
    }

@media only screen and (max-width: 992px) {
    .submenu {
        padding-top: 0px !important;
        position: relative;
        top: -0.8rem;
        left: 0rem;
        width: 100%;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: #F8F8F8;
        padding-right: 15px !important;
        padding-left: 15px !important;
        height: auto;
        max-height: 0;
        /*border:none!important;*/
        padding: 0;
    }


}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.5rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 1rem;
    background: var(--color-black-500);
}

    .burger-line:nth-child(1) {
        top: 0px;
    }

    .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 100%;
    }

    .burger-line:nth-child(3) {
        top: 1rem;
    }

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
        float: left;
        margin-top: 17px !important;
        margin: 19px 0;
        /*margin-left: -4px;*/
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}
