
  .technologies-title
  {
      -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
      -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
  }

  .technologies-title *
  {
      font-weight: 700;
  }

  .technologies-title h1
  {
      cursor: pointer;
  }

  .technologies-list
  {
      position: relative;

      --count: 2 !important;
      --indentX: 20px !important;
      --indentY: 20px !important;
  }

  .technologies-item
  {
      padding: 25px;

      cursor: pointer;

      border: 1px solid #e4e4e4;
      border-radius: 5px;
  }

  .technologies-item:hover
  {
      border: 1px solid #f05a28;
  }

  .technologies-pic
  {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      float: left;

      width: 92px;
      height: 92px;
      margin-right: 35px;

      border-radius: 5px;

      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
  }

  .technologies-name
  {
      font-weight: 700;

      margin-bottom: 10px;

      text-transform: uppercase;
  }

  .technologies-info
  {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;

      display: none;

      width: 100%;
      height: 100%;

      background: white;

      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
  }

  .technologies-info._active
  {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
  }

  .technologies-full-pic
  {
      min-width: -webkit-fit-content;
      margin-right: 50px;
  }

  .technologies-points li
  {
      margin-left: 30px;

      list-style-type: disc;
  }