/* @import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: "Poetsen One", sans-serif; */
    font-family: "Oswald", sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #ffffff;
    --text-color: #22100d;
    --second-color: #685f78;
    --main-color: #f66962;
    --big-font: 3.8rem;
    --h2-font: 2.6rem;
    --p-font: 1.1rem;
}

body {
    /* background: var(--bg-color); */
    background: #F1FAEE;
    color: var(--text-color);
}

#menu-icon {
    font-size: 34px;
    color: var(--text-color);
    align-items: center;
    z-index: 10001;
    cursor: pointer;
    margin-right: 10px;
    visibility: hidden;
}

header {
    position: fixed;
    width: 100%;
    height: 12%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: rgb(255, 255, 255); */
    /* background: linear-gradient(45deg, #cec9c9, #F8F3F3); */
    background: #ffffff;
    /* border-style: dashed; */
    padding: 0% 5% 0% 5%;
    /* margin: -3% 0% 0% 0%; */
    transition: all .40s ease;
}

img.img-group1 {
    width: 150px;
    height: auto;
    padding: 15% 0% 0% 0%;

}

.navbar {
    width: 60%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding-left: 5%;
    margin-right: -5%;
    /* margin-left: 5%;
    padding-right: -5%; */
    justify-content: space-between;
    background: transparent;
    transition: all .40s ease;
}

.header-name1 {
    text-decoration: none;
    list-style: none;
    color: #f66962;
}

header ul {
    position: relative;
}

header ul li {
    position: relative;
    list-style: none;
    float: left;
}

header ul li ul {
    position: absolute;
    left: 0;
    width: 150px;
    background: var(--bg-color);
    display: none;
}

header ul li:hover>ul {
    display: block;
}


header ul li ul li {
    position: relative;
    width: 100%;
    border: 1px solid var(--text-color);
}

.navbar a {
    color: var(--text-color);
    font-weight: 600;
    font-size: var(--p-font);
    display: flex;
    padding: 10px 10px;
    transition: all .40s ease;
}

.navbar a:hover {
    color: var(--main-color);
}




@media (max-width: 499px) {
    a.header-name1 {
        display: none;
    }

    .navbar.open {
        top: 10%;
    }
}

@media (max-width: 1199px) {
    #menu-icon {
        font-size: 34px;
        color: var(--text-color);
        z-index: 10001;
        cursor: pointer;
        margin-right: -2%;
        visibility: visible;
    }

    header {
        width: 0 100%;
        height: 10%;
        top: 0%;
        right: 0%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
        padding: 0% 5% 0% 5%;
        transition: all .40s ease;
    }

    .navbar {
        width: 100%;
        top: 10%;
        left: 100%;
        z-index: 1000;
        display: grid;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        transition: all .40s ease;
    }

    header ul {
        position: fixed;
    }

    header ul li {
        position: relative;
        list-style: none;
        float: left;
    }

    header ul li ul {
        position: relative;
        left: 0;
        width: 200px;
        background: var(--bg-color);
        display: none;
    }

    header ul li:hover>ul {
        display: block;
    }


    header ul li ul li {
        position: relative;
        padding-left: 50px;
        width: 100%;
        border: 0px solid var(--text-color);
    }

    .navbar a {
        width: 600px;
        color: var(--text-color);
        font-weight: 600;
        font-size: var(--p-font);
        display: flex;
        padding: 20px 20px;
        transition: all .40s ease;
    }

    .navbar a:hover {
        color: var(--main-color);
    }

    .navbar.open {
        left: 0%;
        background-color: rgb(255, 255, 255);
    }

    img.img-group1 {
        width: 125px;
        height: auto;
        padding: 17% 0% 0% 0%;
        z-index: 4;
    }
}