 
  .a-box {
    display: inline-block;
    width: 280px;
    text-align: center;
  }
  
  .img-container {
      height: 180px;
      width: 200px;
      display: inline-block;
  }
  
  .img-container img {
     /*height: 250px;*/
      margin: 0px 0px 0px 0px;
      
  }
  
  .inner-skew {
      display: inline-block;
      border-radius: 100%;
      overflow: hidden;
      padding: 0px;
      border-style: solid;
      border-width: 2px;
      border-color: #ddd;
      /* transform: skew(0deg, 13deg); */
      font-size: 0px;
      background: #c8c2c2;
      height: 200px;
      width: 200px;
      transition: 0.5s;
  }
  .inner-skew:hover {
    transform: scale(110%);
  }
  .text-container {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    padding: 120px 10px 10px 10px;
    border-radius: 20px;
    background: #fff;
    margin: -120px 0px 0px 0px;
    line-height: 19px;
    font-size: 14px;
  }
  
  .text-container h3 {
    margin: 0px 0px 10px 0px;
    color: #034f6b;
    font-size: 22px;
    font-weight: bold;
  }
  .text-container h1 {
    margin: 0px 0px 10px 0px;
    color: #036b5a;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .text-container p {
    margin: 0px 0px 0px 0px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
  }
  .link_card:link{
    color: #666;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 25px;
    transition: 0.5s;
  }
  .link_card:hover{
    color: #04bcff;
    transform: scale(110%);
  }
  .link_card:visited{
    color: #04ffab;
  }
  .link_card:active{
    color: #04bcff;
  }
  
  .team_title h2 {
    color: #888888;
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    text-transform: uppercase;
    margin-bottom: 38px;
    position: relative;
    top: 100px;
    opacity: 1;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
  }
  .realisation_card{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 20px;
    overflow: hidden;
    width: 500px;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .realisation_card img{
    object-fit: cover;
    max-width: 180px;
    filter: grayscale(70%);
    transition: 0.5s;
    height: 100%;
    
  }
  .realisation_card:hover img{
    filter: grayscale(0);
    border-radius: 100%;
    scale: 1.4;
  }

  .realisation_card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    scale: 1.05;
    overflow: visible;
  }
  .realisation_card:hover p{
    color: #0A1971;
  }
  .realisation_card p{
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px 10px;
    font-weight: bold;
    color: #666;
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  