.navbar-brand {
  img {
    height: 65px;
  }
}
.footer-logo {
  img {
    height: 60px;
  }
}

.icon-box {
  img {
    filter: invert(87%) sepia(100%) saturate(1682%) hue-rotate(41deg)
      brightness(101%) contrast(105%);
  }
}
.service-item {
  ul {
    margin: 0;
    padding: 0;
    li {
      position: relative;
      list-style: none;
      margin-bottom: 5px;
      &::before {
        content: "";
        position: absolute;
        top: 8px;
        left: 0;

        background: url(../images/arrow-accent.svg) no-repeat;
        background-position: left center;
        background-size: cover;
        width: 16px;
        height: 16px;
      }
      a {
        position: relative;
        display: inline-block;
        transition: all 0.5s;
        color: #fff;
        padding: 4px 0 4px 30px;
        &:hover {
          color: var(--accent-color);
        }
        &:after {
          content: "";
          position: absolute;
          width: 100%;
          transform: scaleX(0);
          height: 2px;
          bottom: 0;
          left: 0;
          background-color: var(--accent-color);
          transform-origin: bottom right;
          transition: transform 0.25s ease-out;
        }
        &:hover:after {
          transform: scaleX(1);
          transform-origin: bottom left;
        }
      }
    }
  }
}
