#stages-block {
  background: white;
  padding: 80px 0px;
}
#stages-block .container .stages-content .stages-wrapper {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#stages-block .container .stages-content .stages-wrapper .stages-item {
  max-width: 100%;
  cursor: pointer;
  position: relative;
  width: 370px;
  height: 370px;
}
#stages-block .container .stages-content .stages-wrapper .stages-item * {
  color: white;
}
#stages-block .container .stages-content .stages-wrapper .stages-item::before {
  content: "";
  max-width: 100%;
  position: absolute;
  top: 0;
  width: 370px;
  height: 370px;
  background-color: #F07D10;
}
#stages-block .container .stages-content .stages-wrapper .stages-item .stages-item-content {
  position: relative;
  width: 370px;
  max-width: 100%;
  height: 370px;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s linear;
  background-position: center;
}
#stages-block .container .stages-content .stages-wrapper .stages-item .stages-item-content:before {
  content: "";
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 370px;
  height: 370px;
  background: #3C4043;
  opacity: 0.6;
  transition: all 0.3s linear;
}
#stages-block .container .stages-content .stages-wrapper .stages-item .stages-item-content .stages-item-title {
  position: relative;
  font-family: "Oswald";
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  transition: all 0.3s linear;
}
#stages-block .container .stages-content .stages-wrapper .stages-item .stages-item-content .stages-desc {
  position: relative;
  height: 240px;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s linear;
}
#stages-block .container .stages-content .stages-wrapper .stages-item .stages-item-content .stages-desc::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(255, 255, 255, 0.199);
  border-radius: 10px;
}
#stages-block .container .stages-content .stages-wrapper .stages-item .stages-item-content .stages-desc::-webkit-scrollbar-thumb {
  background-color: #F07D10;
  border-radius: 10px;
}
#stages-block .container .stages-content .stages-wrapper .stages-item:hover .stages-item-content {
  margin-top: -10px;
  margin-left: -10px;
  flex-direction: column-reverse;
}
#stages-block .container .stages-content .stages-wrapper .stages-item:hover .stages-item-content:before {
  opacity: 0.9;
}
#stages-block .container .stages-content .stages-wrapper .stages-item:hover .stages-item-content .stages-desc {
  opacity: 1;
}