/*     
    #wrapper {
    	height: 100%;
    	width: 100%;
    	min-height: 500px;
    	min-width: 400px;
    	padding-top: 1px;
       
    }*/
    #slider {
    	/*margin: 100px 0 0 0;*/
    	height: 500px;
    	overflow: hidden;
    	background: url(img/ajax-loader.gif) center center no-repeat;
    }
     
    #slider .slide {
    	position: relative;
    	display: none;
        visibility: hidden;
        max-width: 1px;
    	height: 500px;
    	float: left;
    	background-position: center right;
    	cursor: pointer;
    	border-left: 1px solid #fff;
    }
     
    #slider .slide:first-child {
    	border: none;
    }
     
    #slider .slide.active {
    	cursor: default;
        max-width: none;
        visibility: visible;
    }
     
    #slider .slide-block {
    	position: absolute;
    	left: 40px;
    	bottom: 24px;
    	display: inline-block;
    	min-width: 100px;
    	background-color: #fff;
    	background-color: rgba(255,255,255, 1);	
    	padding: 20px;

    	font-size: 14px;
    	color: #134B94;
    	border: 1px solid #fff;
    	overflow: hidden;
    	border-radius: 25px;
        transition: transform .2s, margin .2s; /* Animation */
    }
     
    #slider .slide-block h4 {
    	font-size: 36px;
    	font-weight: bold;
    	margin: 0 0 10px 0;
    	line-height: 1;
    }
    #slider .slide-block p {
    	margin: 0;
    }
    #slider .slide-block:hover{
        transform: scale(1.4);
        margin-left: 50px;
        margin-bottom: 55px;
    }
    .d-block {
        border-radius: 25px;
    }
    .gradient-blue{
        background-image: linear-gradient(90deg, #6ec1e4 0%, #218dc6 100%);
    }

    .gradient-blue h1, .gradient-blue h4 {
        color: #fff;
        text-shadow: 10px 10px 20px rgba(0,0,0,0.11);
    }
    .team-image{
        width:35%;
    }

    .team-section h5 {

        color: #bfbfbf;
        font-size: 15px;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 5px;
    }

    .team-section h1 {
        color: #009ee2;
        font-size: 35px;
        font-weight: 700;
    }

/*    .team-section .pulse {
        background-color: #fff;
    }

    .team-section .pulse:hover {
        
        background-color: #444;
        animation: pulse 0.5s infinite;
    }*/


    @-webkit-keyframes pulse {
  25% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes pulse {
  25% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.pulse {
  display: inline-block;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.pulse:hover {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}