.consulting-services.list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; }
  .consulting-services.list .service-item {
    width: 100%;
    flex: 0 0 100%; }
    .consulting-services.list .service-item:hover .service-item-wrapper .service-item-image img {
      transform: scale(1.1); }
    .consulting-services.list .service-item:hover .service-item-wrapper .service-item-content .service-item-title a {
      color: var(--con_third_color); }
    .consulting-services.list .service-item .service-item-wrapper {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 30px;
      transition: .3s; }
      @media (max-width: 767px) {
        .consulting-services.list .service-item .service-item-wrapper {
          flex-direction: column;
          align-items: flex-start; } }
      .consulting-services.list .service-item .service-item-wrapper .service-item-image {
        flex: 0 0 25%;
        overflow: hidden; }
        .consulting-services.list .service-item .service-item-wrapper .service-item-image img {
          transition: .3s; }
      .consulting-services.list .service-item .service-item-wrapper .service-item-title {
        padding-top: 0;
        margin-bottom: 15px; }
        .consulting-services.list .service-item .service-item-wrapper .service-item-title:before, .consulting-services.list .service-item .service-item-wrapper .service-item-title:after {
          width: 60px;
          height: 6px;
          background-color: var(--con_third_color);
          margin-top: 20px;
          margin-bottom: 20px;
          border-radius: 10px; }
        .consulting-services.list .service-item .service-item-wrapper .service-item-title a {
          font-size: 18px;
          font-weight: 600;
          line-height: 24px;
          color: var(--con_base_color);
          text-decoration: none;
          transition: .3s; }
      .consulting-services.list .service-item .service-item-wrapper .service-item-description {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #7B7A7A;
        margin-bottom: 15px; }
      .consulting-services.list .service-item .service-item-wrapper .service-item-content .service-item-read-more {
        font-size: 14px;
        font-weight: 600;
        line-height: 26px;
        color: var(--con_base_color);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        width: -moz-fit-content;
        width: fit-content; }
        .consulting-services.list .service-item .service-item-wrapper .service-item-content .service-item-read-more .read_more_icon_wrapper {
          display: flex; }
        .consulting-services.list .service-item .service-item-wrapper .service-item-content .service-item-read-more i {
          color: var(--con_base_color);
          background-color: var(--con_third_color);
          width: 20px;
          height: 20px;
          border-radius: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          line-height: 20px; }
        .consulting-services.list .service-item .service-item-wrapper .service-item-content .service-item-read-more svg {
          fill: var(--con_third_color); }
