@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap");


.cdp .cdp-features {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  font-size:0.9em;
}

.cdp .feature {
  /* background-color: #00adef; */
  color: #0082de;
}

.cdp .feature-trapezoid {
  width: 100%;
  height: 1.25rem;
  background-color: #e5f7fd;
  clip-path: polygon(0 100%, 100% 100%, 92% 0, 0 0);
}

.cdp .feature-body {
  margin-top: -1px;
  display: flex;
  flex-direction: column-reverse;
  background-color: #e5f7fd;
  height: 100%;
}

.cdp .feature-body .feature-description {
  margin-top: -1rem;
  text-align: center;
  padding: 0 1rem 1.5rem;
  line-height: 1.5;
  /* min-height: 9rem; */
  height: 100%;
}
.cdp .feature-description span {
  display: block;
}

.cdp .feature-description span.small {
  font-size: 0.75rem;
}

.cdp .feature-image__container {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  justify-content: center;
}


.cdp .feature-image__circle {
  margin-top: 0.5rem;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 85%;
  height: 85%;
  background-color: #fff;
  border-radius: 50%;
}

.cdp .-logo .feature-image__circle {
  width: 90%;
  height: 90%;
  background-color: transparent;
}

.cdp .feature-image {
  width: 70%;
  height: 70%;
}


.cdp .feature:nth-child(4) .future-image {
  width: 83%;
  height: 83%;
}

@media screen and (max-width: 1024px) {
  .cdp .cdp-features {
    gap: 1rem;
  }
}

@media screen and (max-width: 749px) {
  .cdp .feature:nth-child(odd) {
    grid-column: 1/3;
  }
  .cdp .feature:nth-child(even) {
    grid-column: 3/5;
  }

  .cdp .feature:nth-child(3),
  .cdp .feature:nth-child(4) {
    grid-row: 2;
  }
}