.two-columns-shape__wrapper {
  position: relative;
}

.two-columns-shape__wrapper::after {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  content: "";
  top: 0;
  left: 0;
}

.two-columns-shape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.two-columns-shape__wrapper__left {
  display: flex;
  align-items: center;
}

.two-columns-shape__wrapper__right blockquote {
 padding-left: 0; 
}

.two-columns-shape__wrapper__right blockquote::before {
  left: -18px;
}

.two-columns-shape__bg-image {
  position: absolute;
  right: 70%;
  z-index: -1;
}

.two-columns_video-wrapper {
  position: relative;
  cursor: pointer;
  max-width: 818px;
  margin: 0 auto;
}

.two-columns_video-wrapper svg path,
.two-columns_video-wrapper svg path {
  transition: all 0.3s ease-in-out;
}

.two-columns_video-wrapper video {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.two-columns_video-wrapper.paused svg {
  opacity: 1;
}

.two-columns_video-wrapper svg {
  position: absolute;
  display: block;
  bottom: 50%;
  right: 50%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translate(50%, 50%);
}

.two-columns_video-wrapper:hover svg path:last-of-type {
  fill: var(--turquoise);
}


@media (max-width: 767px) {
  .two-columns-shape {
    display: flex;
    flex-direction: column-reverse;
    gap: 70px;
  }

  .two-columns-shape__wrapper__left
    img:not(.two-columns-shape__wrapper__left__logo) {
    width: 100%;
  }

  .two-columns-shape__bg-image {
    bottom: 0;
    right: 50%;
  }
}

{# modifiers #}

.two-columns-shape__wrapper:has(.image-wrapper-rounded) .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.two-columns-shape__wrapper .content-wrapper .two-columns-shape:has(.image-wrapper-rounded) {
  gap: 90px;
}

.two-columns-shape__wrapper .content-wrapper .two-columns-shape__wrapper__left.image-wrapper-rounded {
  border-radius: 30px;
  padding-right: 0 !important;
  overflow: clip;
}

@media (max-width: 767px) {
  .two-columns-shape__wrapper .content-wrapper .two-columns-shape:has(.image-wrapper-rounded) .two-columns-shape__wrapper__left.image-wrapper-rounded {
    width: 100%;
  }
}