.content {
  width: 100%;
}
.content .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
.content .content-wrapper .menu-left {
  width: 300px;
  position: sticky;
  top: 10px;
}
.content .content-wrapper #servicesList {
  width: calc(100% - 300px);
}

#servicesList {
  position: relative;
}
#servicesList .items-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#servicesList .items-list .services-item {
  width: calc(33.3% - 13px);
  margin-bottom: 20px;
}
#servicesList .items-list .services-item .item-wrapper {
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  height: 100%;
}
#servicesList .items-list .services-item .item-wrapper .item-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
#servicesList .items-list .services-item .item-wrapper .item-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#servicesList .items-list .services-item .item-wrapper .item-name {
  font-size: 1.1em;
  font-weight: 600;
}
#servicesList .items-list .services-item .item-wrapper .item-desc {
  flex-grow: 1;
  height: 72px;
  overflow-y: hidden;
}
#servicesList .items-list .services-item .item-wrapper .btn {
  width: fit-content;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#servicesList .items-list .services-item:hover .item-wrapper {
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

/*# sourceMappingURL=style.css.map */
