@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
html {
    height: 100%;
}
body {
    height: auto;
    background-color: #000;
    background-image: url('images/main.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    color: #000;
}
a {
    color: #2C7E17;
}
a:hover {
    color: #357235;
}
p, ul li, ol li {
    font-size: 0.83vw;
}
h1, h2, h3, h4, h5 {}
.navFix {
    box-shadow: 0 0px 6px -2px rgba(0, 0, 0, 0.6705882352941176);
}
.navbar {
    height: auto;
    background: #000;
    border-bottom: 3px solid #33ce0a;
}
.navbar-brand img {
    max-height: 80px;
}
.navbar a {
    text-transform: uppercase;
    font-size: 1.5vw;
    color: #fff;
}
.navbar ul li a {
    background-color: #000;
    font-size: 0.83vw;
    color: #fff;
}
.navbar ul li a:active {
    background-color: #33ce0a;
    color: #fff;
}
.navbar ul li a:hover {
    background-color: #33ce0a;
    color: #fff;
}
.navbar .fas {
    color: #fff;
}
.btn {
    border-radius: 2%;
    text-decoration: none;
	border: 2px solid #000;
    color: #fff;
    position: relative;
    display: inline-block;
}
.btn:not(.btn-danger):not(.btn-primary) {
    background-color: #666;
}
.btn:hover:not(.btn-danger):not(.btn-primary) {
    background-color: #2C7E17;
    color: #fff;
}
.btn-file {
    position: relative;
    overflow: hidden;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    font: inherit;
}
.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    min-width: 100%;
    min-height: 100%;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: black;
    cursor: inherit;
}
.btn:not(.btn-file):active {
    -webkit-transform: translate(0px, 5px);
    transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px;
}
.alert {
    margin: 0 auto 15px auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .20);
    z-index: 10;
}
.cursor {
    cursor: pointer;
}
.header {
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #33ce0a;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #fff;
}
.head {
    font-size: 2rem;
    border-bottom: 3px solid #fff;
    text-align: center;
}
.logo {
    border-bottom: 3px solid #fff;
}
.bTxt {
    padding: 10px 22px 10px 0;
}
.box {
    margin-bottom: 5px;
    background: #222;
    border: 3px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    border-radius: 5px;
    color: #fff;
}
#main {
    position: relative;
    height: auto;
}
#footer {
    position: relative;
    display: block;
    padding: 15px 0;
    background: #222;
    color: #222;
}
#footer p {
    color: #04025c;
}
#footer a {
    color: #222;
}
#footer h5 {
    text-transform: uppercase;
}
#footer .bottom {
    background: #33ce0a;
    color: #fff;
}
@media (max-width: 640px) {
    h1, h2, h3, h4, h5 {
        font-size: 6vw;
    }
    p, ul li, ol li {
        font-size: 4vw;
    }
    .navbar a {
        font-size: 4.5vw;
    }
}