
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.inner-banner{
  background: url('../img/banner/bg_services.jpg') no-repeat;
  height: 15%;
  position: relative;
  background-size: cover;
}

.head{
  position: relative;
  display: table;
  height: 100%;
  width: 100%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.head h3{
  color: white;
  font-size: 25px;
}

.box{
  height: 90vh;
 
  display: flex;
  justify-content: center;
  align-items: center
}
.box .container{
  width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.flex-wrapper{
  display: flex;
  justify-content: space-between;
  width: 100%;
 
}
.info{
  border: 1px solid rgba(155, 151, 151, 0.815);
  padding: 30px;
  margin-right: 15px;
  height: 300px;
  text-align: center;
  
}
.info:last-child{
  margin-right: 0px;
}

.info:hover{
  border:aqua 1px solid;
  transition: ease .3s ;
}