* {
    box-sizing: border-box;
    overflow-x: hidden;
}

:root {
    --clr-main: #ffb640;
    --font-size: 16px;
    --border-radius: 0.2em;
}

.menu {
    width: 35px;
    height: 35px;
    cursor: pointer;
    margin: 35px, 0;
    display: none;
}

body {
    margin: 0;
    font-family: "Arno Pro";
    font-size: var(--font-size);
    overflow-x: hidden;
    overflow-y: hidden;
}

.backgroundimg {
    height: 100vh;
    width: 100vw;
    background-size:cover;
    background-repeat:no-repeat;
    background-position: right 50% top 80%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/static/assets/images/main-bg/main.jpg);
}

.hamburgerMenu {
    display: none;
}

.bar1, .bar2, .bar3 {
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.menu-icon-change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-3.5px, 3.5px);
    transform: rotate(-45deg) translate(-3.5px, 3.5px);
    background-color: var(--clr-main);
}

.menu-icon-change .bar2 {
    opacity: -1;
}

.menu-icon-change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, 8px);
    transform: rotate(45deg) translate(-8px, -8px);
    background-color: var(--clr-main);
}

.showMenuItems {
    transition: visibility 0s, opacity 0.5s linear;
}

.openedMenu {
    display: none;
    position: relative;
    height: 100vh;
    top: 8vh;
    /* background: black; */
}

.menuContainer {
    margin-top: 60%;
}

.menuItems {
    margin-top: 10px;
}

.menuItems a {
    list-style: none;
    text-align: center;
    text-decoration: none;
    font-size: xx-large;
    color: white;
    margin-left: 35%;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.menuItems .active {
    color: var(--clr-main);
}

.nav-bar {
    position: fixed;
    width: 100vw;
    padding-top: 1em;
    margin-top: 0em;
    padding-bottom: 1em;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    height: 2.5em;
    padding: 0;
    text-decoration: none;
    overflow: hidden;
}

.nav-bar ul li {
    padding-right: 2em;
    list-style: none;
}

.nav-bar ul li a {
    text-decoration: none;
    color: white;
}

.nav-bar ul li.active a {
    font-weight: bolder;
    color: #ffb640;
}

.nav-bar ul li:first-child {
    margin-right: auto;
    margin-left: 2em;
}

.logo {
    width: 30px;
    height: 50px;
    visibility: hidden;
}

.wrapper-grid {
    position: fixed;
    left: 5%;
    top: 70%;
}

.main-logo {
    width: 100%;
    height: 100%;
    font-size: 3.5em;
    font-family: "Arno Pro";
    color:darkgrey;
    letter-spacing: 1px;
}

/* tab size */
@media screen and (max-width:820px) and (min-width: 501px) {
    body {
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .wrapper-grid {
        top: 85%;
        left: 20vw;
        text-align: left;
    }

    .main-logo {
        width: 100%;
        height: 50%;
        font-size: 2.5em;
    }
}

@media screen and (max-width:510px) and (min-width: 376px) {
    body {
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .flexMenu {
        display: none;
    }

    .hamburgerMenu {
        display: block;
    }

    .wrapper-grid {
        top: 85%;
        left: 20vw;
        text-align: center;
    }

    .main-logo {
        width: 100%;
        height: 50%;
        font-size: 1.75em;
    }
}

@media screen and (max-width:375px) {
    body {
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .flexMenu {
        display: none;
    }

    .hamburgerMenu {
        display: block;
    }

    .wrapper-grid {
        top: 85%;
        left: 20vw;
        text-align: center;
    }
    
    .main-logo {
        width: 100%;
        height: 50%;
        font-size: 1.5em;
    }
}