#why-us .icon-boxes {
    margin-top: 5vh;
  }
  #why-us .icon-box {
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
    z-index: 1;
  }
  #why-us .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  #why-us .icon-box .title a {
    color: #124265;
    transition: 0.3s;
  }
  #why-us .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  #why-us .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: var(--primary-color);
  }
  #why-us .icon-box:hover {
    transform: scale(1.08);
  }
  #why-us .icon-box:hover .title a {
    color: var(--primary-color);
  }
  
  @keyframes animateHoverHeroImage {
    0%{
      transform: scale(1)
    }
    50%{
      transform: scale(1.20);
    }
    100%{
      transform: scale(1);
    }
  }