/** Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.header-navbar-links{
    float: right;
    display: none;
}
@media (min-width: 750px){
    .header-navbar-links{
        display: block;
    }
}

.topnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: right;
}
.topnav li{
    float: left;
}

.topnav li a{
    display: inline-block;
    color: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    padding: 14px 10px;
}
@media (min-width: 1000px){
    .topnav li a{
        padding: 14px 16px;
    }
}

.side-menu{
    display: none;
    background-color: rgb(255, 255, 255);
    padding-top: 2%;
    color: rgb(0, 128, 127);
}
@media (min-width: 750px) {
    .side-menu{
        display: none;
    }
}

.side-menu h3{
    padding-left: 5%;
}

#side-menu-trigger{
    float: right;
    color: rgb(255, 255, 255);
    margin-top: 15px;
    padding: 10px 30px;
    font-size: 150%;
    height: inherit;
    border-color: rgb(0, 128, 127);
    background-color: rgb(0, 128, 127);
}
@media (min-width: 750px) {
    #side-menu-trigger{
        display: none;
    }
}

.hamburgernav li{
    list-style-type: none;
}

.hamburgernav a{
    display: block;
    color: rgb(0, 128, 127);
    padding: 20px;
    text-decoration: none;
    text-align: left;
    font-size: 1em;
}


/** Header
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.header{
    background-image: url("../images/header.jpg");
    height: 550px;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
}

.hero{
    padding: 250px 50px 20px;
    text-align: center;
}

.hero h1{
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
}

@media (min-width: 550px) {
    .hero h1{
        font-size: 3.5rem;
    }
}

.header-brand img{
    height: 100px;
    width: auto;
}

/** Vision
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.vision{
    padding: 50px 0;
}

.vision img{
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    object-position: 50% 50%;
}
@media (min-width: 550px) {
    .vision img{
         max-height: 80px;
    }
}
@media (min-width: 750px) {
    .vision img{
         max-height: 120px;
    }
}
@media (min-width: 1000px) {
    .vision img{
         max-height: 180px;
    }
}

h3{
    font-size: 2.5rem;
}

/** Theory of Change
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.theory{
    padding: 50px 0 30px;
    background-color: rgb(0, 128, 127);
    color: rgb(255, 255, 255);
}

.theory li:last-child{
    padding: 0 0 20px;
}

.theory img{
    width: 100%;
    max-height: 250px; 
    object-fit: cover;
    object-position: 50% 70%;
    padding: 0 0 10px;
}

.theory h2{
    color: rgb(255, 222, 22)
}

/** Spiral
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.spiral{
    background-image: url("../images/spirale.jpg");
    max-height: 550px;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    padding: 100px 0;  
}

.spiraltext{
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
}

/** People
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.team{
    padding: 50px 0;
}

.relative{
    position: relative;
}

.team img{
    border-radius: 10000000000px;
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
    margin: 5%;
    width: 400px;
    height: 400px;
    position: absolute;
    display: none;
    top: 25%;
}
@media (min-width: 550px) {
    .team img{
        width: 100px;
        height: 100px;
        display: block;
    }
}
@media (min-width: 750px) {
    .team img{
        width: 150px;
        height: 150px;
        top: 10%;
    }
}
@media (min-width: 1000px) {
    .team img{
        width: 200px;
        height: 200px;
        top: -5%;
    }
}

.team p{
    position: absolute;
    padding: 10px;
}
@media (min-width: 400px) {
    .team p{
        padding: 10px;
    }
}
@media (min-width: 550px) {
    .team p{
        font-size: 1.2rem;
    }
}
@media (min-width: 750px) {
    .team p{
        font-size: 1em;
    }
}

.monia, 
.heiko{
    background-color: rgb(0, 128, 127);
    color: rgb(255, 255, 255);
    padding: 10px;
    margin: 10px 0;
    height: 310px;
    position: relative;
}
@media (min-width: 400px) {
    .monia, 
    .heiko{
        height: 250px;
    }
}
@media (min-width: 550px) {
    .monia, 
    .heiko{
        height: 200px;
    }
}

.monia:after,
.heiko:after{
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 128, 127, 0);
	border-width: 30px;
    margin-top: -30px;
    display:none;
}
@media (min-width: 550px) {
    .heiko:after,
    .monia:after{
       display: block;
    }
}

.monia:after{
    left: 100%;
    border-left-color: rgb(0, 128, 127);
}

.heiko:after{
    right: 100%;
    border-right-color: rgb(0, 128, 127);
}

/** Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– **/
.footer{
    padding: 50px 0;
    background-color: rgb(0, 128, 127);
}

.contact-heading {
    color: white;
    margin-bottom: 15px;
    font-weight: lighter; 
} 
  
.contact-subheading {
    color: white;
    font-weight: lighter; 
}

.contact-methods {
    color: white;
    list-style-type: none; 
}

.contact-methods li {
    width: 50%;
    float: left;
    font-weight: lighter;
    height: 2.5em; 
    width: 100%;
    float: none;
}
@media (min-width: 550px){
    .contact-methods li{
        font-size: 1.3rem;
    }
}
@media (min-width: 750px){
    .contact-methods li{
        font-size: 1em;
    }
}
@media (min-width: 1200px) {
    .contact-methods li {
        width: 50%;
        float: left; 
    } 
}

.contact-methods .fa {
    font-size: 150%; 
}

.contact-icon {
    display: inline-block;
    width: 40px;
}

.contact-input {
    width: 100%;
    margin-bottom: 28px;
    background-color: white;
    -webkit-transition: all 0.33s;
    transition: all 0.33s; 
}
  
.contact-input:focus,
input.contact-input:focus {
    border: 1px solid #1e1e1e;
    background-color: #e6e6e6; 
}

.contact-message {
    height: 140px;
    background-color: white; 
}

input.contact-submit[type="submit"] {
    background-color: white;
    margin-bottom: 0px; 
}

.contact-form {
    margin-bottom: 0px; 
    margin-top: 50px;
}

.contact-label {
    color: white;
    display: none; 
}

.no-placeholder .contact-label {
    display: block; 
}

#contact-success {
    color: white; 
}
