/* ============== How Work ===============
   ========================================= */
.how-work .container .section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.how-work .container .section-title h2 {
  max-width: 473px;
}

.how-work .container .section-title p {
  max-width: 400px;
}

.how-work .container .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(267px, 1fr));
  gap: 32px;
}

.how-work .container .cards .card {
  height: 100%;
  padding: 16px 24px;
  border-radius: 20px;
  background-color: #f2f1fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: all 0.5s;
}

.how-work .container .cards .card:hover {
  transform: scale(1.05);
  background-image: linear-gradient(150deg, #0a3d5e 0%, #08273b 100%);
  transition: 0.05s all 0.5s;
}

.how-work .container .cards .card:hover h3 {
  color: #78f9b3;
  transition: all 0.5s;
}

.how-work .container .cards .card:hover p {
  color: var(--white-color);
  transition: all 0.5s;
}

.how-work .container .cards .card .content {
  flex: 1;
}

.how-work .container .cards .card h3 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.how-work .container .cards .card p {
  color: var(--text-color);
  line-height: 24px;
}
