.top {
  display: flex;
  margin-top: 100px;
  margin-bottom: 100px;
}

.top .title {
  padding-right: 100px;
}

.top .right {
  width: 600px;
}

.services {
  margin: 100px auto;
}

.services .list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.services .list .list-item {
  width: 300px;
  padding: 0 20px;
}

.services .list .list-item:not(:last-child) {
  margin-right: 20px;
  border-right: 1px solid #eee;
}

.services .list .list-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.services .list .list-item h3 {
  margin-bottom: 10px;
}

.services .list .list-item p {
  color: #aaa;
}

.capabilities {
  background-color: #000;
  color: white;
  margin-bottom: 200px;
}

.capabilities .container {
  display: flex;
  padding: 50px;
  margin-bottom: 50px;
}

.capabilities .container .left,
.capabilities .container .right {
  width: 50%;
  padding: 50px;
}

.capabilities .container .right {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 80px;
}

.capabilities .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 360px);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.capabilities .list .list-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.capabilities .list .list-item img {
  width: 100%;
  height: 100%;
}

.capabilities .list .list-item .list-item-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-color);
  opacity: 0;
  transition: all 0.5s;
}

.capabilities .list .list-item .list-item-wrapper:hover {
  opacity: 1;
}

.capabilities .list .list-item .list-item-desc {
  width: auto;
  height: auto;
  color: white;
}

.capabilities .list .list-item .list-item-desc ul {
  margin-left: 20px;
}
