/* Start custom CSS for html, class: .elementor-element-0d098c7 */h2{
    justify-content: center ;
    position: top;
    color: whitesmoke;

}
/* ||VARIABLES */
:root{
    --COLOR-PRIMARY: whitesmoke;
    --COLOR-WHITE: #ffaa00ee;
    --COLOR-BLACK: #085421;
    --COLOR-BLACK-1: #212B38;
}
*{
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
    height: auto;


}
.menu__bar{
    background-color: var(--COLOR-BLACK);
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;

}
.logo{
    color:var(--COLOR-WHITE);
    font-size: 30px;
}

.logo span{
  color: var(--COLOR-PRIMARY);  
}

.menu__bar ul{
    list-style-type: none;
    display: flex;
    
}
.menu__bar ul li{
    padding:  10px 30px;
    position: relative;
    
}
.menu__bar ul li a{
    color: var(--COLOR-WHITE);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}
.menu__bar ul li a:hover{
    color:var(--COLOR-PRIMARY);

}
.dropdown__menu{
    display: none;
}



.menu__bar ul li:hover .dropdown__menu{
 display: block;
 position: absolute;
 left: 0;
 top: 100%;
 background-color: var(--COLOR-BLACK);

}

.dropdown__menu ul{
    display: block;
    margin: 10px;

}
.dropdown__menu ul li{
    width: 150px;
    padding: 10px;
}

.fas{
    float: right;
    margin-left: 10px;
    padding-top: 3px;
}
.dropdown__menu-1{
    display: none;
}
.hover-me:hover .dropdown__menu-1{
    position: absolute;
    display: block;
    margin-top: -40PX;
    margin-left: 140px;
    background-color: rgba(15, 5, 61);

}/* End custom CSS */