.ourWork-container {
  max-width: 1070px;
  width: 100%;
  padding: 0px 20px;
}

.ourWork-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.outWork-item {
  width: 100%;
  padding: 20px 0;
  transform: scale(0.8);
  transition: 1s;
}
.outWork-item h2 {
  color: var(--main-bg-dark);
  margin-bottom: 20px;
}
.outWork-item.active {
  transform: scale(1);
  transition: 1s;
}

.outWork-slider {
  display: flex;
  width: 100%;
  max-height: 500px;
}

.oneSlide {
  width: 75%;
  max-height: 500px;
  padding: 5px;
}
.oneSlide img {
  width: 100%;
  height: 100%;
}

.container-slides {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.container-slides__items {
  width: 100%;
  height: 25%;
  padding: 5px;
  overflow: hidden;
  cursor: pointer;
}
.container-slides__items img {
  width: 100%;
  height: 100%;
  transform: scale(1);
}
.container-slides__items:hover img {
  transform: scale(1.1);
  transition: 1s;
}

@media (max-width: 780px) {
  .outWork-slider {
    flex-direction: column;
    max-height: 100%;
  }
  .container-slides {
    width: 100%;
    flex-direction: row;
    order: 2;
  }
  .oneSlide {
    width: 100%;
    max-height: 100%;
  }
  .oneSlide img {
    max-height: 100%;
  }
}

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