* {
    margin: 0; padding: 0;
}

body {
    background: url('../images/bg1.jpg');
}

section.header {
    margin-bottom: 30px;
}

#logo {
    width: 150px;
    margin: auto;
}

#logo img {
    width: 100%;
}
 
#menu-handle {
    height: 110px;
    display: none;
}
  
#menu-handle > span {
    height: 100%;
    display: block;
    line-height: 3;
    color: #fff;
    padding: 5px 15px;
    float: left;
}  

h1{
    color: #fff;
    font-size: 40px;
    text-align: center;
    display: block;
    width: 100%;
    padding: 12px 50px 0;
    line-height: 1;
}

.main {
    max-height: 500px;
}
.main .text{
    height: 500px;
    overflow: auto;
}
.main .img img{
    width: 100%;
    margin:  auto;
    display: block;
    border: 10px solid rgba(20, 30, 40, .2);
}
.main .text h4,
.main .text h6{
    background-color: rgba(20, 30, 40, .8);
    color: #eaeaea;
    text-align: center;
    margin: 0;
}
.main .text h4 {
    padding: 15px 0 5px;
}
.main .text h6 {
    padding: 5px 0;
    line-height: 28px;
}
.main .text table td{
    background-color: rgba(20, 30, 40, .8);
    overflow: auto;
    padding: 5px 20px;
    color: #eaeaea;
    font-size: 14px;
    margin: 0;
}
.main .text table tr td:first-child{
    vertical-align: top;
}
.main .text p{
    background-color: rgba(20, 30, 40, .8);
    overflow: auto;
    padding: 20px;
    color: #eaeaea;
    display: block;
    font-size: 14px;
    margin: 0;
}
.main .text ol{
    background-color: rgba(20, 30, 40, .8);
    overflow: auto;
    padding: 0;
    padding-left: 30px;
    color: #eaeaea;
    display: block;
    font-size: 14px;
    margin: 0;
}
.main .text ol li{
    padding-left: 8px;
}
.blank-out {
    background: #fff;
    display: inline-block;
    height: 20px;
}
.footer p {
    color: #ccc;
    font-size: 12px;
    margin: 0;
    padding: 0;
    line-height: 40px;
    height: 40px;
    display: block;
}

.mainNav {
    height: 320px;
}
  
.mainNav a {
    padding: 0px 0px 0px 10px;
    font-size: 14px;
    text-decoration: none;
    color: #abc;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.mainNav a:hover {
    color: #f1f1f1;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(20, 30, 40, .9);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 4px 8px 4px 32px;
    font-size: 16px;
    text-decoration: none;
    color: #abc;
    display: block;
    transition: 0.3s;
    margin-bottom: 15px;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

@media screen and (max-width: 767px) {
    
    #logo {
        width: 100px;
        float: left;
    }
    
    #logo img {
        width: 100%;
    }

    #menu-handle {
        height: 73px;
        display: block;
        float: left;
        position: absolute;
        right: 0;
        top: 0;
    }
    
    #menu-handle > span {
        line-height: 2;
    }

    h1 {
        color: #fff;
        font-size: 22px;
        text-align: center;
        display: block;
        width: 100%;
        padding: 12px 1px 0;
        line-height: 29px;
    }
    .mainNav {
        display: none;
    }
    
    .sidenav {
        background-color: rgb(20, 30, 40);
    }
    
    .sidenav a {
        padding: 0px 8px 8px 32px;
        margin-bottom: 7px;
        border-bottom: 1px solid rgb(30, 40, 50);
    }
    
    .sidenav .closebtn {
        border: 0;
    }  

    .main {
        max-height: unset;
    }
}

label {
    color: #fff;
}

input[type=text], input[type=email], select, textarea {
    width: 100%; 
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 2px; 
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px;
    resize: vertical 
}

input[type=submit] {
    background-color: rgba(255, 255, 255, .2);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    padding: 20px;
} 