section.block.block-customer-story-testimony {
  padding: 0;
}
section.block.block-customer-story-testimony .container {
  width: 100%;
}
section.block.block-customer-story-testimony .container .card {
  max-width: var(--container-width);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: var(--background-primary);
  width: 100%;
  gap: 16px;
  padding: var(--Spacing-XL, 32px);
}
@media screen and (max-width: 768px) {
  section.block.block-customer-story-testimony .container .card {
    margin-bottom: 0;
    flex-direction: column;
  }
}
section.block.block-customer-story-testimony .container .card .col-6 {
  height: fit-content;
}
section.block.block-customer-story-testimony .container .card .image-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
section.block.block-customer-story-testimony .container .card .image {
  width: 100%;
  height: 300px;
  width: 500px;
  display: flex;
}
@media screen and (max-width: 768px) {
  section.block.block-customer-story-testimony .container .card .image {
    display: none;
  }
}
section.block.block-customer-story-testimony .container .card .image img, section.block.block-customer-story-testimony .container .card .image picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
section.block.block-customer-story-testimony .container .card h3 {
  max-width: 350px;
  margin-bottom: 30px;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  section.block.block-customer-story-testimony .container .card h3 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
section.block.block-customer-story-testimony .container .card .testimony strong, section.block.block-customer-story-testimony .container .card .testimony p {
  font-family: var(--typo-title);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 0;
}
section.block.block-customer-story-testimony .container .card .testimony strong {
  background: var(--gradient-3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.block.block-customer-story-testimony .container .card .testimony p {
  color: #FFF;
}
section.block.block-customer-story-testimony .container .card .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  section.block.block-customer-story-testimony .container .card .info {
    gap: 14px;
    flex-wrap: wrap;
  }
}
section.block.block-customer-story-testimony .container .card .info .image {
  display: block;
  width: fit-content;
  height: 32px;
  margin: 0;
  border-radius: 0;
}
section.block.block-customer-story-testimony .container .card .info .image.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
section.block.block-customer-story-testimony .container .card .info .image.avatar img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
section.block.block-customer-story-testimony .container .card .info .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.block.block-customer-story-testimony .container .card .info .separator {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  section.block.block-customer-story-testimony .container .card .info .separator {
    display: none;
  }
}
section.block.block-customer-story-testimony .container .card .info .author-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.block.block-customer-story-testimony .container .card .info .author {
  display: flex;
  flex-direction: column;
}
section.block.block-customer-story-testimony .container .card .info .author .name_surname,
section.block.block-customer-story-testimony .container .card .info .author .company_position {
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
section.block.block-customer-story-testimony .container .card .info .author .name_surname {
  color: #FFF;
}
section.block.block-customer-story-testimony .container .card .info .author .company_position {
  color: rgba(255, 255, 255, 0.7);
}