.platform {
  padding-bottom: 30px;
  margin-top: 100px;
}
.platform__tabs {
  display: flex;
  margin-top: 11px;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 624px) {
  .platform__tabs {
    flex-direction: column;
    gap: 10px;
  }
}
.platform__description {
  margin-top: 19px;
}
.platform__tab {
  font-family: "Industry-Black", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}
.platform__tab path {
  fill: #fff;
  transition: all 0.3s ease;
}
.platform__tab:hover {
  color: #FFE063;
}
.platform__tab:hover path {
  fill: #FFE063;
}
.platform__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0;
  background: #13101A;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 100%;
}
.platform__card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #FF4232;
  opacity: 0.12;
  filter: blur(48px);
  border-radius: 50%;
  top: 0;
}
.platform__card img {
  max-width: 100%;
  position: relative;
}
.platform__card-title {
  font-family: "Industry-Black", sans-serif;
  font-weight: 600;
  margin-top: 24px;
  font-size: 18px;
  position: relative;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #A4A4A4;
  padding: 0 16px;
}
.platform__text {
  margin-top: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  padding: 0 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  color: #A4A4A4;
}
.platform__grid {
  display: flex;
  margin-top: 34px;
  gap: 17px;
}
@media (max-width: 1024px) {
  .platform__grid {
    display: grid;
    grid-template-columns: repeat(3, calc(33.333% - 12px));
  }
}
@media (max-width: 767px) {
  .platform__grid {
    grid-template-columns: repeat(2, calc(50% - 8px));
  }
}
@media (max-width: 478px) {
  .platform__grid {
    grid-template-columns: 100%;
  }
}