* {
    
	margin: 0;
    box-sizing: border-box;
	cursor: url("../img/cursor.png"), auto;
	text-decoration: none;
}


.containerwald {

	flex-wrap: wrap;
	justify-content: center; 
	position: absolute;
	width: 80%;
	margin:0 50%;

}

.containerwald img {
	
	position:relative;
    height: auto;
    width: 100%;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);

}

.container {

    flex-wrap: wrap;
    justify-content: center;
	position:absolute;
	width: 80%;
	
}

.container img {
	
	text-align: center;
	width: 100%;
	height: 100%;
	border: solid 1px;
	
}

.person-container {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
	background-position: 50px 0px;

}

.border-color {
	
	background: #1f7f62;
	font-size: 18px;
	text-align: center;
	margin: 5px 20px 0 20px;
	
}


.person {
	
    width: 125px;
    height: 125px;
    perspective: 400px;
    margin: 8px;
	
}

.person img {
    
	max-width: 100%;
	
}

.person .front {
    border-radius: 50%;
    height: 100%;
    overflow: hidden;
    backface-visibility: hidden;
	transition: all 0.8s;
}

.person .back {
    position: absolute;
    top: 0;
    height: 125px;
    width: 125px;
    background: #1F7F62;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.1);
	transform: rotateY(-180deg);
    backface-visibility: hidden;
    transition: 0.8s;
}

.person:hover .front {
    transform: rotateY(180deg);
}

.person:hover .back {
    transform: rotateY(0deg);
}

.social img {
    margin: 0px;
    height: 20px;
}


.social a:hover{
	filter: brightness(150%);
}

@keyframes floating{
    from {
        -webkit-transform:translate(0, 0px);
        transform:translate(0, 0px);
    }
    65% {
        -webkit-transform:translate(0, 7px);
        transform:translate(0, 7px);
    }
    to {
        -webkit-transform: translate(0, -0px);
        transform: translate(0, -0px);
    }
}


#portfolio h2 {
    padding:0 10% 10% 10%;
    font-size: 1.2rem;
    font-familiy: 'Display', sans-serif;
    line-height: 1.6rem;
}

#portfolio boxborder {

    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-direction:row;
    flex-direction:row;
		-ms-flex-wrap:wrap;
	flex-wrap:wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
    justify-content:space-between;
    margin:3% 5%;
    transform: translateY(5%);
	min-height: 50px;
}

#portfolio boxborder box {
    text-align: center;
    height:auto;
	cursor: pointer;
	
}

.boxout {
    transition: 0.8s;
    transform:translate(0,600px);
    transform-origin: left top;
	position: relative;
	margin-top:50%;
}

.boxout.boxin {
    transform:translate(0,0);
}

#box1 {
    -webkit-animation: floating 2800ms infinite ease-in-out;
            animation: floating 2800ms infinite ease-in-out;

}

#box2 {
    margin-top:60px;
    -webkit-animation: floating 3000ms infinite ease-in-out;
            animation: floating 3000ms infinite ease-in-out;
}

#box3 {
    margin-top:35px;
    -webkit-animation: floating 3200ms infinite ease-in-out;
            animation: floating 3200ms infinite ease-in-out;
}

#portfolio circle {
    background-color:#373737;
    color:#FFF;
    font-size: 2rem;
    -webkit-animation: pending 1s;
    animation: pending 1s;
}

#portfolio circle i:hover {
    color: black;
}


#portfolio box h2 {

    margin:0 auto;

}

#portfolio{
	background-image: url(../img/team.png);
    margin:0 auto;
	background-repeat: repeat;
	width: 100%;
	background-size: 1920px;
}
