
@import url('https://fonts.googleapis.com/css?family=Concert+One|Pacifico|Oswald|Hi+Melody');

body{
    margin: 0;
    padding: 0;
}


nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 100px;
    box-sizing: border-box;
    transition: .5s;
    z-index: 100;
}
nav.black{
    background: rgba(255, 255, 255);
    height: 120px;
    padding: 10px 50px;
    box-shadow: 10px 5px 10px #262626;
}
.black.hide{
    transform: translateY(-100%);
}
nav .logo{
    float: left;
}
nav .logo img{
    height: 80px;
    transition: .5s;
    border-radius: 10px;
}
nav.black .logo img{
    height: 60px;
}
nav.black ul li a{
    color: rgb(81,122,62);
}
nav ul{
    float: right;
    margin: 0;
    padding: 0;
    display: flex;   
}
nav ul li{
    list-style: none;
}
nav ul li a{
    line-height: 30px;
    color: #999;
    padding: 5px 20px;  
    text-decoration: none;
    text-transform: uppercase;
    transition: .5s;
    font-family: sans-serif;
    font-weight: bolder;
    position: relative;
    text-align: center;
}
nav.black ul li a{
    color: rgb(81,122,62);
}
nav ul li a:hover{
    color: #fff;
    background:green;
    text-decoration: none;
}
nav ul li a.active{
    color:#fff;
    
}
nav ul li a.active:before{
    transform: scale(1);
    transform-origin: left;
}
ul li a.active:after{
    transform: scale(1);
    transform-origin: right;
}
section.sec1{
    width: 100%;
    height: 100vh;
    background: url(images/bg_1.jpg);
    background-size:cover;
}
section.sec2{
    width: 100%;
    height: 100vh;
    background: url(images/bg_2.jpg);
    background-size:cover;
}
section.sec3{
    width: 100%;
    height: 100vh;
    background: url(images/bg_5.jpg);
    background-size:cover;
}
section.content{
    padding: 100px;
}
section.content h1{
    margin: 0;
    padding: 0;
    font-size: 2em;
}
section.content p{
    margin: 20px 0 0;
    padding: 0;
    font-size: 1em;
}
.responsive-bar{
    display: none;
}
@media(max-width:800px){
    nav{
        z-index: 0;
    }
    .responsive-bar{
        display: block;
        width: 100%;
        height: 110px;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        padding: 5px 20px;
        box-sizing: border-box;
        z-index: 99;
    }
    .the-index{
        z-index: 23;}
    .responsive-bar .logo img{
        float: left;
        height: 50px;
        border-radius: 10px;
        width: 60px;
    }
    .responsive-bar .menu h4{
        float: right;
        color: #fff;
        margin: 0;
        padding: 0 15px;
        line-height: 50px;
        cursor: pointer;
        text-transform: uppercase;
        background-color: rgb(81,122,62);
        font-family: Oswald;
        border-radius: 10px;
    }
    nav,
    nav.black{
        background: #262626;
        height:60px;
        padding: 0;
    }
    nav .logo{
        display: none;
    }
    nav ul{
        position: relative;
        width: 100%;
        top: 60px;
        left: 0;
        background:transparent;
        float: none;
        display: none;
    }
    nav ul.active{
        display: block;
    }
    nav ul li{
        width: 100%;
    }
    nav ul li a{
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        line-height: 30px !important;
        color: #fff;
    }
}
.new-contact p{
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.black .new-contact p{
    color: #222;
}
.block{
    display: none;
}


body{
    margin: 0;
    background: none;
}

.nav{
    
    background: transparent;
    text-align: center;
    align-content: center;
    padding-left: 20%;
    
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
}

ul li{
    float: left;
    
}

ul li a{

    color:white;
    display: inline-flex;
    text-decoration: none;
    font-size: 15px;
    text-align: center;
    padding: 4px;
    border-radius: 
    font-weight:bold;
}

a:hover{
    
    background-color: grey;

}


ul li ul{
    background:brown;

}

ul li ul li{
    float: none;
}

ul li ul{
    display: none;
}

ul li:hover ul{
    display: block;
}


