.work {
  position: relative;
  min-height: 600px;
  z-index: 1;
  padding: 60px 0;
  background-color: #F6F6F6;
}
.work__title {
  margin: 0;
  margin-bottom: 5px;
}
.work__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #272822;
  margin-bottom: 158px;
}
.work__holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  padding-right: 150px;
}
.work__holder .item {
  position: relative;
  color: #272822;
  cursor: pointer;
  z-index: 2;
}
.work__holder .item:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 300%;
  height: 2px;
  border-top: 2px dashed #E54044;
  z-index: 1;
}
.work__holder .item__key {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  background-color: #E54044;
  border: 2px solid #E54044;
  border-radius: 50%;
  transition: background-color 0.3s ease-in;
  z-index: 3;
}
.work__holder .item__key::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: #272822;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.3);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.work__holder .item__desc {
  display: flex;
  max-width: 250px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  transition: color 0.3s ease-in;
}
.work__holder .item__desc svg {
  margin: 15px 0;
}
.work__holder .item__desc svg path {
  transition: fill 0.3s ease-in;
}
.work__holder .item:nth-child(odd) .item__desc {
  position: absolute;
  bottom: calc(100% + 20px);
  flex-direction: column;
}
.work__holder .item:nth-child(even) .item__desc {
  position: absolute;
  top: calc(100% + 20px);
  flex-direction: column;
}
.work__holder .item:last-child:after {
  display: none;
}
.work__holder .item:hover .item__key {
  background-color: transparent;
}
.work__holder .item:hover .item__key::before {
  opacity: 1;
  transform: scale(1.1);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.work__holder .item:hover .item__desc {
  color: #E54044;
  transition: color 0.3s ease-in;
}
.work__holder .item:hover .item__desc svg path {
  fill: #FC6B3A;
}

@media (max-width: 1025px) {
  .work {
    padding-bottom: 250px;
  }
  .work__title {
    font-size: 50px;
    line-height: 60px;
  }
  .work__holder {
    flex-wrap: wrap;
    row-gap: 250px;
    padding-right: 0;
  }
  .work__holder .item {
    width: 30%;
  }
  .work__holder .item:after {
    display: none;
  }
}
@media (max-width: 969px) {
  .work {
    padding-bottom: 100px;
  }
  .work__title {
    font-size: 40px;
    line-height: 50px;
  }
  .work__subtitle {
    margin-bottom: 10px;
  }
  .work__holder {
    flex-wrap: wrap;
    row-gap: 50px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding-right: 0;
  }
  .work__holder .item {
    width: 46%;
  }
  .work__holder .item__key {
    margin-bottom: 10px;
  }
  .work__holder .item:nth-child(odd) .item__desc, .work__holder .item:nth-child(even) .item__desc {
    position: initial;
    width: 100%;
  }
}
@media (max-width: 498px) {
  .work {
    padding: 40px 0;
  }
  .work__title {
    font-size: 30px;
    line-height: 35px;
  }
  .work__holder {
    row-gap: 20px;
  }
  .work__holder .item__desc {
    font-size: 16px;
    line-height: 20px;
  }
}/*# sourceMappingURL=block.css.map */