.cord-wrapper {
    /*margin-bottom: 30px;*/
    -webkit-box-shadow: 3px 8px 10px -2px rgba(0,0,0,0); 
    box-shadow: 3px 8px 10px -2px rgba(0,0,0,0);
  }
  .cord-image .cord .cord-img-wrapper {
    height: 100%;
  }
  .cord-image .cord .cord-body {
    display: none;
  }
  .cord-image-title-description .cord .cord-img-wrapper {
    max-height: 160px;
  }
  .cord-image-title-description .cord {
    position: relative;
    min-height: 300px;
  }
  .cord-image-title-description .cord .cord-body {
    height: auto;
    position: relative;
    top: 0;
    margin-bottom: -70px;
  }
  .cord-image-title-description .cord:hover .cord-body {
    top: -70px;
  }
  .cord-image-title-description .cord .cord-body .cord-title {
    margin-bottom: .75rem;
  }
  .cord {
    /*display: inline-block;*/
    position: relative;
    overflow: hidden;
    min-height: 200px;
    height: 100%;
    -webkit-box-shadow: 3px 8px 10px -2px rgba(0,0,0,0); 
    box-shadow: 3px 8px 10px -2px rgba(0,0,0,0);
  }
  .cord:hover {
    box-shadow: 8px 12px 31px -10px #ab98ab;
  }
  .cord-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    overflow: hidden;
  }
  .cord-img-wrapper img {
    transition: 1.5s ease;
  }
  .cord:hover .cord-img-wrapper img {
    transform: scale(1.15);
  }
  .cord-body .cord-title {
    margin-bottom: calc(50% + 20px);
    transition: 1.5s ease;
  }
  .cord:hover .cord-body .cord-title {
    margin-bottom: .75rem;
  }
  
  .cord-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: #fff;
    transition: 1.5s ease;
    padding: 12px;
  }
  .cord-content {
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
    transition: 1.5s ease;
  }
  .cord:hover .cord-body {
    height: 80%;
  }
  .cord:hover .cord-content {
    bottom: 0;
  }
  body {
    margin: 0;
    background-image: linear-gradient(to right, #ECE9E6 , #FFFFFF);
  }