
        .our-team{
            text-align: center;
            position: relative;
            color: #fff;
			
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        .our-team:before{
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            transition:all 0.3s ease 0s;
            opacity: 0;
        }
        .our-team:hover:before{
            opacity: 1;
        }
        .our-team img{
            width: 100%;
            height: auto;
        }
        .our-team .team-content{
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 5px 0;
            background-color: rgba(47,116,166,0.9);
            transition:all 0.3s ease 0s;
        }
        .our-team:hover .team-content{
            bottom: 20%;
        }
        .our-team .team-content .name{
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 7px;
            transition:all 0.3s ease 0s;
			z-index: 2;
        }
        .our-team:hover .team-content .name{
            transform:translateY(30px);
            transition-delay:0.3s;
        }
        .our-team .team-content .post{
            font-size: 17px;
            display: block;
            transition:all 0.3s ease 0s;
        }
        .our-team:hover .team-content .post{
            transform:translateY(-30px);
            transition-delay:0.3s;
        }
		

		
		
		
		
		.team_zwei:hover .team-content .name{
            transform:translateY(75px);
            transition-delay:0.3s;
        }
        .team_zwei .team-content .post{
            font-size: 17px;
            display: block;
            transition:all 0.3s ease 0s;
        }
        .team_zwei:hover .team-content .post{
            transform:translateY(-30px);
            transition-delay:0.3s;
        }
		
		.deckbox {
			position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px 0;
            background-color: rgba(47,116,166,0.9);
		}
		
		
		
		

        @media screen and (max-width:990px){
            .our-team{
                margin-bottom: 30px !important;
            }
        }