#sect-work .sect_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#sect-work .sect_content .work_item {
  padding: 25px 35px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
#sect-work .sect_content .work_item .item--step {
  font-size: clamp(16px, 2vw, 32px);
  font-weight: 600;
}
#sect-work .sect_content .work_item .item--img {
  height: clamp(70px, 12vw, 180px);
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#sect-work .sect_content .work_item .item_text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#sect-work .sect_content .work_item .item--title {
  font-size: clamp(14px, 1.8vw, 25px);
  font-weight: 500;
}
#sect-work .sect_content .work_item .item--desc {
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 500;
}
#sect-work .sect_content .work_item:nth-child(1) {
  background-color: #ADD1FF;
}
#sect-work .sect_content .work_item:nth-child(1) .item--step,
#sect-work .sect_content .work_item:nth-child(1) .item--title {
  color: #2840B6;
}
#sect-work .sect_content .work_item:nth-child(1) .item--desc {
  color: #5185C5;
}
#sect-work .sect_content .work_item:nth-child(2) {
  background-color: #D7ECA0;
}
#sect-work .sect_content .work_item:nth-child(2) .item--step,
#sect-work .sect_content .work_item:nth-child(2) .item--title {
  color: #2840B6;
}
#sect-work .sect_content .work_item:nth-child(2) .item--desc {
  color: #5185C5;
}
#sect-work .sect_content .work_item:nth-child(3) {
  background-color: #74B0FC;
}
#sect-work .sect_content .work_item:nth-child(3) .item--step,
#sect-work .sect_content .work_item:nth-child(3) .item--title,
#sect-work .sect_content .work_item:nth-child(3) .item--desc {
  color: #fff;
}
#sect-work .sect_content .work_item:nth-child(4) {
  background-color: #5185C5;
}
#sect-work .sect_content .work_item:nth-child(4) .item--step,
#sect-work .sect_content .work_item:nth-child(4) .item--title,
#sect-work .sect_content .work_item:nth-child(4) .item--desc {
  color: #fff;
}
#sect-work .sect_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 110px;
}
#sect-work .sect_footer .footer--text {
  color: #2840B6;
  font-size: clamp(18px, 1.8vw, 32px);
  font-weight: 600;
}
#sect-work .sect_footer .footer--link {
  background-color: #74B0FC;
  color: #fff;
  padding: 20px;
  border-radius: 25px;
  font-size: 28px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
#sect-work .sect_footer .footer--link:hover {
  background-color: #fff;
  color: #74B0FC;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  #sect-work .sect_content {
    grid-template-columns: repeat(2, 1fr);
  }
  #sect-work .sect_content .work_item {
    border-radius: 20px;
    padding: 15px 20px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #sect-work .sect_content .work_item .item--step {
    grid-column: span 2;
  }
  #sect-work .sect_footer {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  #sect-work .sect_content {
    grid-template-columns: 1fr;
  }
  #sect-work .sect_content .work_item {
    padding: 20px;
    border-radius: 15px;
    gap: 20px;
  }
  #sect-work .sect_content .work_item .item_text {
    gap: 8px;
  }
  #sect-work .sect_footer .footer--text {
    display: none;
  }
}