/* logos section */
.custom-logos {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  margin: 30px 0;
}

.custom-logos__title {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #CCCCCE;
  text-align: left;
}

.custom-logos__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.custom-logos__list-item {
  flex: 0 0 auto;
  width: 100px;
  height: auto;
  border-radius: 0px;
  background-color: #1F1F23;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.custom-logos__list-item img {
  width: 100%;
}

@media only screen and (max-width: 500px) {
  .custom-logos__list-item {
    flex: 0 0 calc(33.33% - 8px);
  }
}

/* crypto section */
.custom-crypto {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 0 0;
}

.custom-crypto__item {
  flex: 0 1 calc(100% / 6);
  min-width: calc(320px / 2);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px 40px;
}

.custom-crypto__item-img {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 40px;
  margin-bottom: 24px;
}

.custom-crypto__item-img img:first-child {
  z-index: 2;
}
.custom-crypto__item-img img:nth-child(2) {
  z-index: 1;
}
.custom-crypto__item-img img:nth-child(3) {
  z-index: 0;
}

.custom-crypto__item-img img {
  width: 100%;
}

.custom-crypto__item-img img + img {
  margin-left: -12px;
}

.custom-crypto__item-title {
  display: block;
  font-family: inherit;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.custom-crypto__item-subtitle {
  display: block;
  font-family: inherit;
  color: #CCCCCE;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  margin: 2px 0 0;
  text-align: center;
}

/* custom-summary-section */
.custom-summary-section {
  position: relative;
  padding: 96px 0;
}

.custom-summary-section__shape {
  position: absolute;
  top: 200px;
  left: 0;
}

@media only screen and (max-width: 991px) {
  .custom-summary-section__shape {
    display: none;
  }
}

.custom-industries {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  position: relative;
  padding-top: 48px;
}

.custom-industries__item {
  position: relative;
  z-index: 2;
  flex: 1 1 calc(100% / 5 - 16px);
  min-width: calc(375px / 2 - 16px);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 24px;
  gap: 32px;
  background-color: #1F1F23;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

.custom-industries__item-img {
  display: block;
  height: 64px;
}

.custom-industries__item-img img {
  height: inherit;
  width: auto;
}

.custom-industries__item-title {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
}

.custom-industries-footer {
  display: block;
  padding: 32px 0 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #CCCCCE;
  text-align: center;
}

.custom-summary-tiles {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
  position: relative;
  padding-top: 48px;
}

.custom-numbers {
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(66.66% - 16px);
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 64px;
  gap: 64px;
  background-color: #1F1F23;
  border-radius: 0px;
}

.custom-numbers__item {
  position: relative;
  z-index: 2;
  flex: 0 1 calc(50% - 64px);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.custom-numbers__item-title {
  display: block;
  font-family: inherit;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
  text-align: left;
}

.custom-numbers__item-subtitle {
  display: block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #CCCCCE;
  text-align: left;
}

.custom-numbers__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.custom-numbers__bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-10%, 20%);
  background: linear-gradient(270deg, #01FFA4 0%, #C0FF3A 100%);
  opacity: .1;
  /* filter: blur(32px); */
  border-radius: 9999px;
  width: 200px;
  height: 200px;
}

.custom-numbers__bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  background: linear-gradient(270deg, #01FFA4 0%, #C0FF3A 100%);
  opacity: .1;
  /* filter: blur(64px); */
  border-radius: 9999px;
  width: 385px;
  height: 385px;
}


@media only screen and (max-width: 767px) {
  .custom-numbers {
    padding: 32px;
    gap: 40px;
  }
  .custom-numbers__item {
    flex: 0 1 100%;
    align-items: center;
  }
}

.custom-quote {
  flex: 1 1 calc(33.33% - 16px);
  min-width: 275px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 32px;
  gap: 32px;
  background-color: #1F1F23;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

.custom-quote__icon {
  height: 24px;
}

.custom-quote__title {
  display: block;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
}

.custom-quote__footer {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.custom-quote__author {
  display: block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
}

.custom-quote__position {
  display: block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #CCCCCE;
  text-align: center;
}
