#features {
  display: flex;
  flex-direction: column;
  gap: 250px;
  margin-bottom: 150px;

  > .item {
    display: flex;
    flex-direction: column;
    gap: 32px;

    background: radial-gradient(#c65bff33 0%, #27044733 40%, transparent 80%);
    background-size: min(max(100vw, 1200px), 1920px)
      min(max(100vw, 1200px), 650px);
    background-repeat: no-repeat;
    background-position: center center;

    > h2 {
      font-size: 48px;
      font-weight: 800;
      text-align: center;
      background: linear-gradient(90deg, #8dcefe 13.71%, #c65bff 85.71%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .img-wrapper {
      max-width: 100%;

      > video,
      > img {
        width: 100%;
        border-radius: 36px;
      }
    }

    > .parts {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;

      > .img-wrapper,
      > .description {
        flex: 1 1 350px;
        border-radius: 36px;
      }

      > .description {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 36px;
        border: 1px solid #58476f;

        background: #190233;

        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(2px);

        > h2 {
          font-size: 32px;
          font-weight: 600;
        }

        > p {
          font-size: 24px;
          font-weight: 500;
        }
      }

      > .icon-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        flex: 1 0 300px;

        > .list-item {
          flex: 0 0 auto;
          flex-direction: row;
          align-items: center;
          gap: 16px;
          min-height: unset;
          padding: unset;

          > icon {
            line-height: 24px;
          }
        }
      }
    }

    &:nth-child(even) {
      > .parts {
        flex-direction: row-reverse;
      }
    }

    .icon-list {
      padding: 32px;

      border-radius: 36px;
      border: 1px solid #58476f;
      background: #190233;
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(5px);

      display: flex;
      align-items: center;
      justify-content: space-evenly;
      flex-wrap: wrap;

      > .list-item {
        display: flex;
        flex-direction: column;
        gap: 24px;

        min-height: 90px;

        flex: 0 0 170px;
        padding: 16px;

        > icon {
          line-height: 0;
          font-size: 40px;
        }

        &:nth-child(1) > icon {
          color: #8ecbff;
        }

        &:nth-child(2) > icon {
          color: #9daeff;
        }

        &:nth-child(3) > icon {
          color: #ab92ff;
        }

        &:nth-child(4) > icon {
          color: #a768e9;
        }

        &:nth-child(5) > icon {
          color: #c45fff;
        }

        > span {
          font-size: 18px;
          font-weight: 500;
        }
      }
    }
  }
}

@media screen and (max-width: 1000px) {
  #features {
    > .item {
      > h2 {
        font-size: 36px;
      }

      > .parts {
        > .description {
          padding: 24px;

          > h2 {
            font-size: 24px;
          }

          > p {
            font-size: 18px;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 600px) {
  #features > .item .icon-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    flex: 1 0 300px;

    > .list-item {
      flex: 0 0 auto;
      flex-direction: row;
      align-items: center;
      gap: 16px;
      min-height: unset;
      padding: unset;

      > icon {
        line-height: 24px;
      }
    }
  }
}
