*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body {
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(./images/background.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.banner{
    width: 100%;    
}
.navbar{
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.logo{
    height: 75px;
    cursor: pointer;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.25s;
}

.navbar ul li:hover::after{
    width: 100%;
}

.content-home{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);    
    text-align: left;
    color: #fff;
    display: block;
    overflow: auto;
}
.content{
    width: 90%;
    position: relative;
    top: 5%;
    left: 5%;
    text-align: left;
    color: #fff;
    display: block;
    overflow: auto;
}
.content h1{
    font-size: 2em;
    margin-top: 80px;
}
.content h2{
    font-size: 1.75em;
    margin: 20px auto;
}
.content h3{
    font-size: 1.5em;
    margin: 20px auto;
}
.content a, a:hover, a:visited, a:active{
    text-decoration: none;
    color: #fff;
}
.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 1.25em;
}
.project-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px, auto;
    padding: 10px, auto;
    position: relative;
    text-align: justify;
    color: #fff;
}
.project-container h3{
    font-size: 1.5em;
    margin: 20px auto;
}
.project-container a, a:hover, a:visited, a:active{
    text-decoration: none;
    color: #fff;
}
.projectImg{
    float: left;
    margin: 5px;
    width: 100px;
    position: relative;
    flex: 1;
    object-fit: contain;
}
.project-container p{
    overflow: hidden;
    flex: 2;
    margin: 10px;
}
.content ul li{
    color:#fff;
    margin: 20px, auto;
    padding: 10px, auto;
    list-style-type: circle;
}
.content ul li::marker{
    color: #fff;
}
.project-container-text{
    margin: 20px, auto;
    padding: 10px, auto;
    position: relative;
    text-align: justify;
    color: #fff;
}
.project-container-text p{
    overflow: hidden;
    margin: 10px;
}
.project-container-text ul li{
    color:#fff;
    margin: 20px, auto;
    padding: 10px, auto;
    position: relative;
}
.project-container-text ul li::marker{
    color: #fff;
}
.contact-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0, auto;
    padding: 10px, auto;
    position: center;
    text-align: center;
    color: #fff;
}
.contact-container p{
    overflow: hidden;
    flex: 1;
    width: 40%;
}
.contact-form {
    float: right;
    flex: 2;
}
.contact-form p{
    text-align: center;
    color: #fff;
    margin: 0, auto;
}
.contact-form iframe{
    background: #b6b1b1;   
}

.footbar{
    width: 100%;
    position: relative;
    bottom: 10%;
    transform: translateY(-90%);
    text-align: center;
    color: #fff;
}
.footbar p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 0.5em;
}
.footbar-home{
    width: 100%;
    position: absolute;
    bottom: 10%;
    transform: translateY(-90%);
    text-align: center;
    color: #fff;
}
.footbar-home p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 0.5em;
}
