section.block.block-testimony .container {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(37.78% 68.49% at 73.02% 83.25%, rgba(15, 188, 255, 0.1) 0%, rgba(15, 188, 255, 0) 100%), linear-gradient(302deg, #021525 -0.88%, rgba(40, 52, 79, 0) 117.52%);
  display: flex;
  width: min(min(1090px, var(--container-width, 100%)), 100%);
  padding: var(--Spacing-3XL, 64px);
  align-items: center;
  gap: var(--Spacing-2XL, 48px);
  margin: auto;
}
@media (max-width: 768px) {
  section.block.block-testimony .container {
    width: 90%;
    padding: var(--spacing-xl, 32px);
    flex-direction: column;
    gap: var(--spacing-xl, 32px);
  }
}
section.block.block-testimony .container .profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
section.block.block-testimony .container .profile .profile-picture {
  width: 120px;
  height: 120px;
  border-radius: 99px;
}
section.block.block-testimony .container .profile .profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.block.block-testimony .container .profile .company-logo {
  max-width: 180px;
  max-height: 60px;
}
section.block.block-testimony .container .profile .company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.block.block-testimony .container .profile-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.block.block-testimony .container .profile-details .profile-name,
section.block.block-testimony .container .profile-details .profile-position {
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
section.block.block-testimony .container .profile-details .profile-name {
  color: #FFF;
}
section.block.block-testimony .container .profile-details .profile-position {
  color: rgba(255, 255, 255, 0.7);
}
section.block.block-testimony .container .separator {
  width: 1px;
  height: 189.071px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  section.block.block-testimony .container .separator {
    width: 100%;
    height: 1px;
  }
}
section.block.block-testimony .container .testimony-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}
section.block.block-testimony .container .testimony-text strong {
  background: var(--gradient-3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Geologica;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  section.block.block-testimony .container .testimony-text strong {
    font-size: 18px;
  }
}
section.block.block-testimony .container .testimony-text p {
  color: var(--Color-Brand-White, #FFF);
  font-family: Geologica;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 768px) {
  section.block.block-testimony .container .testimony-text p {
    font-size: 18px;
  }
}
section.block.block-testimony .container .testimony-text .image-container {
  padding: 12px;
}
section.block.block-testimony .container .testimony-text .image-container img {
  width: auto;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 768px) {
  section.block.block-testimony .container .testimony-text .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}