*{
    margin: 0;
    padding: 0;

}

header{
    width: 100%;
    height: auto;


}

/*nav{
    background: rgb(229,227,229);
    overflow: hidden;
    position: relative;
    width: 98%;
    border:1x #666;
    margin:0 auto;
    border-radius:10px;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
   }*/

nav{
    background-color:transparent;

overflow: hidden;
    position: relative;
    width: 100%;

    border:1px #666;
    margin:0 auto;
    border-radius:10px;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
    /* IE10+ */ 
background-image: -ms-linear-gradient(top left, #DDDDDD 0%, #E5E3E5 47%, #ededed 100%);

/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(top left, #DDDDDD 0%, #E5E3E5 47%, #ededed 100%);

/* Opera */ 
background-image: -o-linear-gradient(top left, #DDDDDD 0%, #E5E3E5 47%, #ededed 100%);

/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #DDDDDD), color-stop(47, #E5E3E5), color-stop(100, #ededed));

/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(top left, #DDDDDD 0%, #E5E3E5 47%, #ededed 100%);

/* W3C Markup */ 
background-image: linear-gradient(to bottom right, #DDDDDD 0%, #E5E3E5 47%, #ededed 100%);


}
.startline {
    margin:0 auto;
    margin-top:-10px;
    height:40px;
  background: rgba(116,32,108,1);
background: -moz-linear-gradient(45deg, rgba(116,32,108,1) 0%, rgba(137,38,127,1) 49%, rgba(199,35,145,1) 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(116,32,108,1)), color-stop(49%, rgba(137,38,127,1)), color-stop(100%, rgba(199,35,145,1)));
background: -webkit-linear-gradient(45deg, rgba(116,32,108,1) 0%, rgba(137,38,127,1) 49%, rgba(199,35,145,1) 100%);
background: -o-linear-gradient(45deg, rgba(116,32,108,1) 0%, rgba(137,38,127,1) 49%, rgba(199,35,145,1) 100%);
background: -ms-linear-gradient(45deg, rgba(116,32,108,1) 0%, rgba(137,38,127,1) 49%, rgba(199,35,145,1) 100%);
background: linear-gradient(45deg, rgba(116,32,108,1) 0%, rgba(137,38,127,1) 49%, rgba(199,35,145,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#74206c', endColorstr='#c72391', GradientType=1 );
    width:100%;
    margin-bottom:40px;
    color:white;
    border-radius:10px;
    -webkit-box-shadow: 4px 4px 3px #ADADAD;
  -moz-box-shadow: 4px 4px 3px #ADADAD;
  box-shadow: 4px 4px 3px #ADADAD;

}



.logo-section{
    float: left;
    margin-left:15px;
   
    padding-left:20px;

}
/*.logo{
    top: 0px;
    color: rgb(191,52,60);
    font-family: sans-serif;
    left: 0px;
    text-shadow: 1px 1px 0px #666666;
    position: relative;
    text-transform: uppercase;
}*/


.hb-button{
    float: right;
    background: none;
    color: purple;
    border: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    display: none;
    outline: 0 none;
 
}

nav a{
    text-decoration: none;
    color: #282828;
    font-size: 20px;
    padding: 5px;

}

nav ul{
    margin-top:30px;
    overflow: hidden;
    color: #fff;
    margin-left:0px;
    padding: 0px;
    text-align: center;
    transition: max-height 0.5s;
    -webkit-transition: max-height 0.5s;
    -moz-transition: max-height 0.5s;
    -ms-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    float:right;
    margin-right:0px; 
}

nav ul li{
    float: left;
    display: inline-block;
    padding: 5px;
    margin:0 auto;
 /* margin-right: 20px;*/
  }

li > a{
    position: relative;
    color:#89267f;
    text-decoration: none;

}

li > a:hover{
    color: #666;
}

li > a:before{
    content:"";
    position: absolute;
    width: 100%;
    height:3px;
    bottom: 0;

    left: 0;
    background-color:#89267f;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

li > a:hover:before{
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}


/*.img-wrapper{
    width: 100%;

 }

img{
  
    width: 100%;


}*/


@media screen and (max-width: 767px){
  
       .logo-section{
        float: none;
    }
    nav ul{
       background:#E5E3E5;
        max-height: 0;
        width: 100%;
    }
    nav ul.show{
        max-height: 30em;
    }
    nav ul li{
        box-sizing: border-box;
        width: 100%;
        padding: 15px;
    }
    .hb-button{
        display: block;
        padding-top:21px;
        border:none;
    }


}






    
