  section {
    margin: 0px auto;
    min-height: 90vh;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
    
  .section-modal {
    position: relative;
    overflow: hidden;
  }
  .section-modal .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
  }
  .section-modal .overlay .modal {
    width: 450px;
    box-shadow: 0px 23px 30px -20px rgba(0, 0, 0, 0.4);
  }
  .section-modal .overlay .modal .title {
    background: #0097A7;
    color: white;
    border-radius: 4px 4px 0px 0px;
    text-align: center;
    line-height: 48px;
    font-weight: 700;
  }
  .section-modal .overlay .modal .body {
    background: white;
    border-radius: 0px 0px 4px 4px;
    line-height: 20px;
    display: flex;
    align-items: stretch;
  }
  .section-modal .overlay .modal .body .text {
    padding: 30px;
  }
  .section-modal .overlay .modal .body .text p {
    margin-bottom: 20px;
  }
  .section-modal .overlay .modal .body .img {
    height: 180px;
    width: 140px;
    border-bottom-left-radius: 4px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
  }
  .section-modal .overlay.is-active {
    display: flex;
    -webkit-animation: overlayAnim 3s ease-in-out forwards;
            animation: overlayAnim 3s ease-in-out forwards;
  }
  .section-modal .overlay.is-active .modal {
    -webkit-animation: modalAnim 3s ease-in-out forwards;
            animation: modalAnim 3s ease-in-out forwards;
  }
  
  @-webkit-keyframes overlayAnim {
    0%, 100% {
      background-color: rgba(0, 0, 0, 0);
    }
    15%, 85% {
      background-color: rgba(0, 0, 0, 0.3);
    }
  }
  
  @keyframes overlayAnim {
    0%, 100% {
      background-color: rgba(0, 0, 0, 0);
    }
    15%, 85% {
      background-color: rgba(0, 0, 0, 0.3);
    }
  }
  @-webkit-keyframes modalAnim {
    0% {
      transform: translateX(-200%) rotate(-90deg);
      opacity: 0;
    }
    10% {
      transform: translateX(4%) rotate(4deg);
    }
    15%, 85% {
      transform: translateX(0%);
      opacity: 1;
    }
    90% {
      transform: translateX(-4%) rotate(-4deg);
    }
    100% {
      transform: translateX(200%) rotate(90deg);
    }
  }
  @keyframes modalAnim {
    0% {
      transform: translateX(-200%) rotate(-90deg);
      opacity: 0;
    }
    10% {
      transform: translateX(4%) rotate(4deg);
    }
    15%, 85% {
      transform: translateX(0%);
      opacity: 1;
    }
    90% {
      transform: translateX(-4%) rotate(-4deg);
    }
    100% {
      transform: translateX(200%) rotate(90deg);
    }
  }