

*,
*::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;
}

.navbar {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    //background-color: #FFFFFF;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.containerHead{
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}

.brand {
    font-family: inherit;
    font-size: 25.6px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-pink-500);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #2e2e2e;
    color:white
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
    row-gap: 32px;
    width: 100%;
    height: 64px;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        background-color: #2e2e2e;
        transition: all 0.5s ease;
    }

    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
}


.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 30px;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 4px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: white;
    transition: all 0.3s ease-in-out;
}

.menu-link>i.bx {
    font-size: 21.6px;
    line-height: 1.5;
    color: inherit;
}

.menu-link:hover {
    outline: none;
    color: #f97d21;
}

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        color: #2e2e2e;
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 16px 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 8px 20px;
    }
}

.submenu {
    position: absolute;
    top: 37.6px;
    left: -32px;
    min-width: 208px;
    height: auto;
    padding: 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    border-radius: 0 0 0.25rem 0.25rem;
    border-top: 2px solid #f97d21;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #2e2e2e;
    transition: all 0.3s ease-in-out;
}

.submenu-item {
    display: block;
    margin-top: 18px;
}

.submenu-link {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: white;
    transition: all 0.35s ease;
}

.submenu-link:hover {
    outline: none;
    color: #f97d21;
}

@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -8px;
        left: 40px;
        width: 80%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
        color: #2e2e2e;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 18.6px;
    height: 18.4px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    right: 0;
    width: 100%;
    height: 2.1px;
    opacity: 1;
    border: none;
    outline: none;
    border-radius: 16px;
    background: #f97d21;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 8px;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 16px;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.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;
    }
}
@media only screen and (max-width: 575px) {
    .navbar {
        width: 85%;
    }
}