.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    width: 100%;
    position: relative;
}
.navbar-inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--common-width);
    
    padding: 0 30px;
}
.nav-col1 a{
    color: white;
    text-decoration: none;
}
.nav-col1 a:hover{
    color: var(--accent);
}
.navbar .nav-col1 h2{
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-col2 ol {
    list-style-type: none;
    display: flex;
}
.nav-col2 ol a {
    text-decoration: none;
    font-family: 600;
    margin: 0 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
}
.navbar .navbar-inside .nav-col2 ol a:hover {
    color: var(--accent);
}
.nav-col3 button{
    border: 2px solid var(--accent);
    background-color: var(--accent);
    color: black;
    padding: 7px 15px;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s background-color ease-in;
}
.nav-col3 button:hover {
    background-color: white;
    border: 2px solid var(--accent);
}

.hamburger-icon{
    display: none;
}

@media screen and (max-width:1080px){
    .navbar{
        padding: 0;
        margin: 0;
        
    }
    .navbar-inside{
        padding: 0 20px;
        margin: 0;
        flex-direction: column;
    }
    .nav-col1{
        /* justify-content: flex-start; */
        /* align-items: flex-start; */
        width: 100%;

        padding: 0 10px;
    }
    .navbar .nav-col1 h2 {
        font-size: 25px;
    }

    .nav-col3{
        display: none;
    }
    .nav-col2{
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .nav-col2 ol {
        
        list-style-type: none;
        display: flex;
        flex-direction: column;
        padding: 0;
        width: 100%;
        
        position: absolute;
        left: 0;
        margin: 0;
        top: 0;
        justify-content: space-between;
        align-items: center;
        
    }
    .nav-col2 ol a{
        padding: 15px 0;
        margin: 5px 0;
        text-align: center;
        width: 75%;
        border-radius: 5px;
    }
    .nav-col2 .nav-ol-responsive a{
        color: var(--bg-body);
    }

    
    .nav-col2 ol a:hover {
        background-color: black;
        color: white;
    }

    .nav-col2 ol a:not(:last-child){
        display: none;
    }
    .nav-col2 ol.nav-ol-responsive{
        background-color: var(--accent);
    }
    .nav-col2 ol.nav-ol-responsive a:hover {
        color: black;
    }
    .nav-col2 ol.nav-ol-responsive a:not(:last-child){
        display: block;
    }
    .navbar .hamburger-icon{
        display: block;
        position: absolute;
        top: 0px;
        right: 15px;
        /* font-size: 30px; */
        color: white;
        background-color: transparent;
        width: 50px;
        font-size: 25px;
    }
    .navbar a.hamburger-icon:hover {
        background-color: transparent;
        color: black;
    }
    .navbar a.hamburger-icon:hover .fa-solid {
        color: rgb(165, 0, 236);
    }

    .nav-col2 .nav-ol-responsive a:first-child:hover .nav-col2 ol.nav-ol-responsive a.hamburger-icon .fa-solid{
        color: white;
    }

}