*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body,html
{    
    background-image: url(newlogo.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    justify-content: center;
    font-family: 'Arial'; 
    animation: change 50s infinite ease-in-out;
}

@keyframes change{
    10%
    {
        background-image: url(goto-3.png);
    }
    30%
    {
        background-image: url(goto-connect-1.jpeg);
    }
    50%
    {
        background-image: url(goto-conect-2.png);
    }
    70%
    {
        background-image: url(goto-connect-3.jpeg);
    }
    90%
    {
        background-image: url(goto-4.png);
    }
  
}
.menu-bar
{
    background: #0f0f0f;
    text-align: center;
    opacity: 1.0;
    
}
.menu-bar ul 
{
    display: inline-flex;
    list-style: none;
    color: #4374b4;
}
.menu-bar ul li
{
    width: 150px;
    margin: 20px;
    padding: 15px;
    
}
.menu-bar ul li a
{
    text-decoration: none;
    color: #4374b4;
    font-style: oblique;

}
.active, .menu-bar ul li:hover
{
    background: #f8f40b;
    

    /*border-radius:36px;
    display: block;
    overflow:hidden;
    background:#9e7b3a;*/
    

}
.menu-bar .fa
{
    margin-right: 8px;
    
} 
.sub-menu-1 
{
    display: none;

}
.menu-bar ul li:hover .sub-menu-1 
{
    display: grid;
    position: absolute;
    background: #f8f40b;
    margin-top: 15px;
    margin-left: -15px;

    -webkit-animation: glowing 1s ease-in-out infinite alternate;
    -moz-animation: glowing 1s ease-in-out infinite alternate;
    animation: glowing 1s ease-in-out infinite alternate;
  }
   @-webkit-keyframes glowing {
    from {
      box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #f0f, 0 0 40px #0ff;
    }
    to {
      box-shadow: 0 0 20px #fff, 0 0 30px #e0e965, 0 0 40px #ff4da6;
    }



}
.menu-bar ul li:hover .sub-menu-1 ul 
{
   display: block;
    margin: 10px;
    
}
.menu-bar ul li:hover .sub-menu-1 ul li
{
    width: 200px;
    padding: 10px;
    border-bottom: 1px dotted #4374b4;
    background: transparent;
    border-radius: 1;
    text-align: left;

}
.menu-bar ul li:hover .sub-menu-1 ul li:last-child
{
    border-bottom: none;
} 
.menu-bar ul li:hover .sub-menu-1 ul li a:hover
{
    color: #f8f40b;
}
.fa-angle-right
{
    float: right;
}
.sub-menu2
{
    display: none;
}
.hover-me:hover .sub-menu2
{
  position: absolute;
  display: block;
  margin-top: -40px;
  margin-left: 200px;
  background: #f8f40b;

  -webkit-animation: glowing 1s ease-in-out infinite alternate;
  -moz-animation: glowing 1s ease-in-out infinite alternate;
  animation: glowing 1s ease-in-out infinite alternate;
}
 @-webkit-keyframes glowing {
  from {
    box-shadow: 0 0 10px rgb(219, 231, 233), 0 0 20px rgb(70, 223, 103), 0 0 30px #f0f;
  }
  to {
    box-shadow: 0 0 20px rgb(234, 237, 252), 0 0 30px #d8e247, 0 0 40px #e22b86;
  }
}

