/* =====================
  Tokens in Design System
  (following https://medium.com/eightshapes-llc/tokens-in-design-systems-25dd82d58421)
===================== */
/* ==========[ TOKENS ]========== */
/* 1. Texts */
/* 2. Button */
/* 3. Brand */
/* 4. Background */
/* 5. Font */
/* 6. Border */
/* ==========[ DECISION ]========== */
/** VAR OLDS **/
/*-- Colors --*/
/*-- Text & Font --*/
/*-- Border, Shadow --*/
/*-- Main colors --*/
.customer-stories {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px; }
  .customer-stories__wrapper {
    display: block;
    transition: box-shadow .2s ease,transform .2s ease,-webkit-transform .2s ease; }
    .customer-stories__wrapper:hover {
      box-shadow: 0 4px 32px rgba(53, 89, 135, 0.15);
      transform: scale(1.02, 1.02); }
  .customer-stories .story {
    margin-bottom: 46px; }
    .customer-stories .story .image {
      padding-top: 61.66%;
      position: relative;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
      .customer-stories .story .image .logo {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 60px; }
    .customer-stories .story .type {
      position: absolute;
      left: 10px;
      top: -10px;
      background-color: #009f6f;
      color: #fff;
      font-size: 12px;
      border-radius: 3px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
      z-index: 1;
      text-transform: uppercase;
      font-weight: 700;
      padding: 6px 18px; }
    .customer-stories .story .details {
      border-top: 1px solid #f0f0f0;
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column; }
      .customer-stories .story .details h2 {
        font-weight: bold;
        font-size: 20px; }
        .customer-stories .story .details h2 a {
          color: #313131;
          text-decoration: none; }
      .customer-stories .story .details .spacing {
        flex: 1; }
      .customer-stories .story .details p {
        margin-bottom: 35px;
        margin-top: 5px;
        color: #313131; }
      .customer-stories .story .details a {
        color: #009f6f;
        font-weight: 600; }
  @media (max-width: 767.9px) {
    .customer-stories .story {
      width: 100%; } }
