div.block-testimony-videos * {
  box-sizing: border-box;
}
div.block-testimony-videos .columns {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns {
    flex-direction: column-reverse;
    gap: var(--wp--preset--spacing--2-xl);
    margin-bottom: var(--wp--preset--spacing--3-xl);
  }
}
div.block-testimony-videos .columns .column {
  width: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns .column {
    width: 100%;
  }
}
div.block-testimony-videos .columns .column .controls {
  display: flex;
  gap: 10px;
  position: absolute;
  right: var(--wp--preset--spacing--3-xl);
  bottom: calc(var(--wp--preset--spacing--3-xl));
  z-index: 3;
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns .column .controls {
    right: var(--wp--preset--spacing--xl);
    bottom: 0px;
  }
}
div.block-testimony-videos .columns .column .controls .control {
  width: 50px;
  height: 50px;
  background-color: var(--wp--preset--color--primary);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--wp--preset--color--primary);
}
div.block-testimony-videos .columns .column .controls .control svg {
  width: 26px;
  height: 27px;
}
div.block-testimony-videos .columns .column .controls .control.disabled {
  background-color: transparent;
  border: 1px solid #3F3F46;
}
div.block-testimony-videos .columns .column .controls .control.right {
  transform: rotate(180deg);
}
div.block-testimony-videos .columns .column .testimonies .testimony {
  width: 100%;
  height: 100%;
  padding: var(--wp--preset--spacing--3-xl);
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns .column .testimonies .testimony {
    padding: var(--wp--preset--spacing-xl);
  }
}
div.block-testimony-videos .columns .column .testimonies .testimony p {
  margin: 0px;
}
div.block-testimony-videos .columns .column .testimonies .testimony blockquote {
  padding: 0px;
  margin: 0px;
  font-size: 42px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: var(--wp--preset--spacing--xl);
}
div.block-testimony-videos .columns .column .testimonies .testimony blockquote strong {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns .column .testimonies .testimony blockquote {
    font-size: 36px;
  }
}
div.block-testimony-videos .columns .column .testimonies .testimony cite {
  font-style: normal;
  font-weight: 500;
}
div.block-testimony-videos .columns .column.videos-container {
  padding: var(--wp--preset--spacing--4-xl);
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns .column.videos-container {
    padding: var(--wp--preset--spacing--xl);
  }
}
div.block-testimony-videos .columns .column.videos-container .videos {
  width: 100%;
  aspect-ratio: 1;
  background-color: white;
  z-index: 2;
  position: relative;
  border-radius: 16px;
  color: black;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  div.block-testimony-videos .columns .column.videos-container .videos {
    min-width: 300px;
  }
}
div.block-testimony-videos .columns .column.videos-container .videos .video {
  width: 100%;
  height: 100%;
  display: none;
}
div.block-testimony-videos .columns .column.videos-container .videos .video iframe {
  width: 100%;
  height: 100%;
}
div.block-testimony-videos .columns .column.videos-container .videos .video.active {
  display: block;
}
div.block-testimony-videos .columns .column .background-video {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
div.block-testimony-videos .columns .column .background-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}