.work-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.work-container-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 30px;
  overflow-x: hidden;
}
.work-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--padding-border);
}
.work-container-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .work-main {
    padding: 30px;
  }
  .work-container-row {
    flex-direction: column;
    gap: 20px;
  }
  .work-container img {
    width: 100%;
    height: auto;
  }
}
