.all-projects {
  width: 100%;
  height: 900px;
  display: flex;
  max-width: 1000px;
  max-height: 550px;
  overflow: hidden;
  position: relative;
  margin: 40px 0;
}

.projects-item {
  visibility: visible;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
  background-color: #fff;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  position: absolute;
  z-index: 0;
  transition: 0.6s all linear;
}

.projects-item__info {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-direction: column;
  order: 1;
  left: 0;
  margin: auto;
  padding: 0 40px;
  width: 40%;
}

.projects-item__image {
  width: 60%;
  height: 100%;
  order: 2;
  align-self: flex-end;
  flex-basis: 60%;
  -webkit-order: 2;
  -webkit-align-self: flex-end;
  -webkit-flex-basis: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}

.projects-item__subtitle {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  font-size: 10px;
  text-transform: uppercase;
  margin: 0;
  color: #7E7E7E;
  font-weight: 700;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all ease-in-out;
}

.projects-item__title {
  margin: 15px 0 0 0;
  font-family: "Gemunu Libre", sans-serif;
  color: #009473;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 3px;
  font-weight: 700;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}

.projects-item__description {
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
  margin-top: 35px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #7e7e7e;
  line-height: 22px;
  margin-bottom: 35px;
}

.projects-item--1 .projects-item__image {
  background-image: url("../pictures/project_conv.png");
}

.projects-item--2 .projects-item__image {
  background-image: url("../pictures/project_messenger.png");
}

.projects-item--3 .projects-item__image {
  background-image: url("../pictures/project_ips.png");
}

.projects-item--4 .projects-item__image {
  background-image: url("../pictures/project_ad.png");
}

.projects-item--5 .projects-item__image {
  background-image: url("../pictures/project_website.png");
}

.projects-item__btn {
  width: 35%;
  color: #2C2C2C;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 3px;
  font-size: 11px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}

.projects__nav {
  position: absolute;
  right: 0;
  z-index: 2;
  background-color: #fff;
  bottom: 0;
}

.projects__icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  fill: #5d5d5d;
}

.projects__arrow {
  cursor: pointer;
  display: inline-block;
  padding: 11px 15px;
  position: relative;
}

.projects__arrow:nth-child(1):after {
  content: "";
  right: -3px;
  position: absolute;
  width: 1px;
  background-color: #b0b0b0;
  height: 14px;
  top: 50%;
  margin-top: -7px;
}

.active {
  z-index: 1;
  display: flex;
  visibility: visible;
}

.active .projects-item__subtitle, .active .projects-item__title, .active .projects-item__description, .active .projects-item__btn {
  transform: translateY(0);
  opacity: 1;
  transition: 0.6s all ease-in-out;
  visibility: visible;
}

.active .projects-item__image {
  transition: 0.6s all ease-in-out;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .projects-item__container {
    margin-top: 50px;
  }

  .projects-item__image {
    width: 0% !important;
    opacity: 0 !important;
  }

  .projects-item__info {
    width: auto !important;
  }

  .active {
    flex-wrap: wrap;
  }

  .projects-item__info {
    width: auto;
  }

  .all-projects {
    width: 400px;
    height: 400px;
    display: flex;
    overflow: visible;
    position: relative;
  }
}

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