body{
    margin: 0;
    padding: 0;
    /* background: url(../images/bg/manuel-antonio.jpg); */
    background-size: cover;
    height: 100vh;
}

#dynamic-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
#dynamic-bg video, #dynamic-bg img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}

.wrapper{
    display: flex;
    flex-direction: column;
}

.logo{
    padding-top: 5%;
    text-align: center;
    margin-bottom: 10px;
}

.content-inner{
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.top{
    display: flex;
    flex-direction: column;
}

.box{
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    margin-bottom: 10px;
}

.login {
    order: 1;
}

.info{
    order: 2;
    /* font-weight: bold; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info p {
    margin-top: 0;
    margin-bottom: 10px;
}

.footer{
    order: 3;
}

.footer-text {
    order: 4;
    text-align: center;
}

.footer-text p {
    color: #fff;
    margin-top: 0;
    text-shadow: 1px 1px 3px #000;
}

.login__row{
	border-bottom: 1px solid #fff;
	width: 90%;
	margin: 0 auto;
    height: 2rem;
    padding-top: 1rem;
}

.login__input {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    border: medium none;
    outline: medium none;
    color: #fff;
}

.btn-submit{
    background: #007223;
    border-radius: 3rem;
    width: 80%;
    display: block;
    height: 40px;
    margin: 20px auto;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.members{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.members a{
    margin: 0 5px;
}

/**************************
ABOUT US
**************************/
.about-us {
    background: #007223;
}

.h-screen,
.h-full {
    max-height: 600px;
}

.services {
    list-style: disc;
    margin: 10px;
    padding: 10px;
}

@media (min-width: 769px) {
	.wrapper{
		max-width: 1080px;
		margin: 0 auto;
        	height: 100%; /*100vh;*/
        	justify-content: space-around;
	}

    .logo{
        text-align: right;
    }
 
    .top{
        display: flex;
        flex-direction: row;
    }

    .info{
        width: 79%;
        margin-right: 1%;
        order: 1;
    }

    .login {
        width: 20%;
        order: 2;
    }

    .members{
        justify-content: space-around;
    }

    .members a{
        margin: 0;
    }
}