*{
    margin:  0;
    padding: 0;
    box-sizing: border-box;
    
    
    
    }
    body{
    
        background-image: url(bacground.jpg);
        background-size: cover;
        background-position: center;
        
        font-family: sans-serif;
    }    
    .menu-bar
    {
    background: hwb(200 48% 45%);
    text-align: center;
    }
    .menu-bar ul{
        display: inline-flex;
        list-style: none;
        color: #fff;
    } 
    .menu-bar ul li {
        width: 120px;
        margin: 15px;
        padding: 15px;
    
    }
    .menu-bar ul li a {
        text-decoration: none;
        color: #fff;
    
    }
    .active,.menu-bar ul li :hover  {
        background: hsl(199, 74%, 56%);
        border-radius: 3px;
    
    }
    .menu-bar .fa{
    
        margin-right: 10px;
    }
    .sub-menu-1{
    
        display: none;
    }
    .menu-bar ul li:hover .sub-menu-1
    {
        display: block;
        position: absolute;
        background: #14c3e2;
        margin-top: 15px;
        margin-left: -15px;
    }
    .menu-bar ul li:hover .sub-menu-1 ul
    {
    display: block;
    margin: 10px;
    }
    .menu-bar ul li:hover .sub-menu-1 ul li
    {
    width: 150px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
    
    }
    .menu-bar ul li:hover .sub-menu-1 ul li a:hover
    {
        color: #000;
    }
    
    .menu-bar ul li:hover .sub-menu-1 ul li:last-child
    {
        border-bottom: none;
    }
    
    .fa-angle-right
    {
        float: right;
    }
    .sub-menu-2
    {
        display: none;
    }
    .hover-me:hover .sub-menu-2
    {
        position: absolute;
        display: block;
        margin-top: -40px;
        margin-left: 140px;
        background-color: hwb(189 13% 7%);
    }
    .logo{ 
        position:absolute; 
        top:0; 
        left:0; 
    }
    .content
    {
        position:absolute;
          display: contents;
            color: #fff;
            text-align: center;
            margin: 0;            
       top: 50%;                         
       transform: translate(0, -50%);
    }
    /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
    .icon-bar {
        position: fixed;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
      }
      
      /* Style the icon bar links */
      .icon-bar a {
        display: block;
        text-align: center;
        padding: 16px;
        transition: all 0.3s ease;
        color: white;
        font-size: 20px;
      }
      
      /* Style the social media icons with color, if you want */
      .icon-bar a:hover {
        background-color: #000;
      }
      
      .facebook {
        background: #3B5998;
        color: white;
      }
      
      .twitter {
        background: #55ACEE;
        color: white;
      }
      
      .linkedin {
        background: #007bb5;
        color: white;
      }
      
      .youtube {
        background: #bb0000;
        color: white;
      }
      .whatsapp {
        background: hwb(140 0% 26%);
        color: white;
      }
      
      main {
         width: 100%;
         height: 85vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
    
      }
      
      section h3{
        font-weight: 200;
        font-size: 35px;
        letter-spacing: 3px;
        text-shadow: 1px 1px 2px black;
    
      }
      section h1{
    margin: 30px 0 20px 0;
    font-size: 55px;
    font-weight: 700;
    text-shadow: 2px 1px 5px black;
    text-transform: uppercase;
    
    
      }
      section a {
        padding: 15px 30px;
        border-radius: 4px;
        outline: none;
        text-transform: lowercase;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 1px;
        transition: all .5s ease;
    
        
    
      }
      section p{
    width: 100%;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px black;
    color: #00e1ff;
    
    
      }
      section .button1
      {
    
        background: hsl(186, 92%, 50%);
       color: #fff;
       text-transform: capitalize;
    
    
      }
      .button1:hover {
        background: rgb(230, 12, 211);
        color: #fff;
        text-transform: capitalize;
    
    
      }
      section .button2{
        background: hwb(189 5% 7%);
        color: #fff;
        text-transform: capitalize;
     
    
    
      }
    .button2:hover {
        background: #ed0af5;
       color: #fff;
       text-transform: capitalize;
    
     }
    
    .change_content:after {
        content: '';
        animation: changetext 10s infinite linear;
      color: #14c3e2;
    
    }
    @keyframes changetext {
        0%{content: " Budget Insurence";}
        12%{content: " Auto & General";}
        25%{content: " Dial Direct";}
        37%{content: " Iwyze";}
        52%{content: " Momentum";}
        60%{content: " 1st for Women";}
        72%{content: " Pmd";}
        100%{content: "Momentum";}
        
    }