@charset "UTF-8";
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 3.6rem 1fr 3.6rem;
}
@media (width > 768px) {
  .main-layout {
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 1440px) {
  .main-layout {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
.main-layout > * {
  grid-column: 2;
}
.main-layout > .full {
  grid-column: 1/-1;
}

@media (width > 768px) {
  .main-layout-desktop {
    display: grid;
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 768px) and (width > 1440px) {
  .main-layout-desktop {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
@media (width > 768px) {
  .main-layout-desktop > *:not(.border) {
    grid-column: 2;
  }
  .main-layout-desktop > .full {
    grid-column: 1/-1;
  }
}

/**
 * Product Landing — Intro. Mobile-first.
 * Mobile: description on top, vertical video + red caption below, then the
 * "יתרונות המוצר" advantages grid (icon + red label).
 * Desktop: description and video side by side.
 */
.pl-intro {
  width: 100%;
  padding: 7.2rem 3.6rem;
  direction: rtl;
  background: var(--white-main);
  padding-bottom: 0;
}
@media (width > 768px) {
  .pl-intro {
    padding: 0;
    border-top: 1px solid var(--red-30);
  }
}
@media (width > 768px) {
  .pl-intro__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "desc media" "adv media";
    align-items: start;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
    row-gap: 4rem;
    padding: 6rem 4rem 6rem 0;
    border-right: 1px solid var(--red-30);
  }
}
.pl-intro__top {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.4rem;
  padding-bottom: 3.2rem;
}
@media (width > 768px) {
  .pl-intro__top {
    display: contents;
  }
}
.pl-intro__media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width > 768px) {
  .pl-intro__media {
    grid-area: media;
    align-items: flex-start;
    align-self: stretch;
    position: relative;
  }
  .pl-intro__media::before, .pl-intro__media::after {
    content: "";
    position: absolute;
    top: -6rem;
    bottom: -6rem;
    width: 1px;
    background: var(--red-30);
  }
  .pl-intro__media::before {
    left: 0;
  }
  .pl-intro__media::after {
    right: 0;
  }
}
.pl-intro__video-trigger {
  position: relative;
  display: block;
  width: 30.9rem;
  max-width: 100%;
  cursor: pointer;
  line-height: 0;
  background: #000;
}
@media (width > 768px) {
  .pl-intro__video-trigger {
    box-sizing: border-box;
    width: 35.3rem;
    padding: 0 3rem;
    background: transparent;
    border-top: 1px solid var(--red-30);
    border-bottom: 1px solid var(--red-30);
  }
}
.pl-intro__video-trigger::before, .pl-intro__video-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  background: var(--red-30);
  z-index: 2;
}
@media (width > 768px) {
  .pl-intro__video-trigger::before, .pl-intro__video-trigger::after {
    display: none;
  }
}
.pl-intro__video-trigger::before {
  top: 0;
}
.pl-intro__video-trigger::after {
  bottom: 0;
}
.pl-intro__video, .pl-intro__thumbnail, .pl-intro__iframe {
  display: block;
  width: 30.9rem;
  max-width: 100%;
  height: 54.8rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width > 768px) {
  .pl-intro__video, .pl-intro__thumbnail, .pl-intro__iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 309/548;
  }
}
.pl-intro__iframe {
  border: 0;
}
.pl-intro__thumbnail--placeholder {
  background: #000;
}
.pl-intro__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.pl-intro__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 0.9;
}
.pl-intro__video-trigger.is-playing .pl-intro__play-btn {
  display: none;
}
.pl-intro__video-trigger.is-playing .pl-intro__thumbnail {
  display: none;
}
.pl-intro__caption {
  position: relative;
  margin: 0;
  padding: 3.2rem 0;
  align-self: stretch;
  color: var(--red-main);
  font-family: "Simpler", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: right;
}
@media (width > 768px) {
  .pl-intro__caption {
    width: 35.5rem;
    padding: 3.2rem 3rem;
  }
}
.pl-intro__caption::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 1px;
  background: var(--red-30);
}
@media (width > 768px) {
  .pl-intro__caption::after {
    left: 0;
    width: 100%;
    transform: none;
  }
}
.pl-intro__description {
  flex: 1;
  color: var(--grey-40);
  font-size: 1.5rem;
  line-height: 1.7;
}
.pl-intro__description p {
  margin: 0 0 1.2rem;
}
.pl-intro__description a {
  color: var(--red-main);
}
@media (width > 768px) {
  .pl-intro__description {
    grid-area: desc;
    align-self: start;
  }
  .pl-intro__description,
  .pl-intro__description p {
    color: var(--black-main, #333032);
    text-align: right;
    font-family: "Simpler", sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.3;
  }
}
.pl-intro__advantages {
  margin-top: 7.2rem;
}
@media (width > 768px) {
  .pl-intro__advantages {
    grid-area: adv;
    margin-top: 0;
  }
}
.pl-intro__advantages-title {
  position: relative;
  margin: 0 0 3.2rem;
  color: var(--red-main);
  font-family: "Simpler", sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  text-align: center;
}
.pl-intro__advantages-title::after {
  content: "";
  position: absolute;
  bottom: -3.2rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red-30);
}
@media (width > 768px) {
  .pl-intro__advantages-title::after {
    display: none;
  }
}
@media (width > 768px) {
  .pl-intro__advantages-title {
    margin: 0 0 2.4rem;
    text-align: right;
    font-size: 3.2rem;
    font-weight: 400;
  }
}
.pl-intro__advantages-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (width > 768px) {
  .pl-intro__advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 2.4rem;
    max-width: none;
    margin: 0;
  }
}
.pl-intro__advantage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  padding: 3.2rem 0;
}
@media (width > 768px) {
  .pl-intro__advantage {
    padding: 2.4rem 2rem;
    gap: 1.2rem;
    border-left: 1px solid var(--red-30);
  }
  .pl-intro__advantage:nth-child(odd) {
    border-right: 1px solid var(--red-30);
  }
}
.pl-intro__advantage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red-30);
}
@media (width > 768px) {
  .pl-intro__advantage::after {
    display: none;
  }
}
.pl-intro__advantage:last-child::after {
  display: none;
}
.pl-intro__advantage-icon {
  width: auto;
  height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width > 768px) {
  .pl-intro__advantage-icon {
    height: 4.4rem;
  }
}
.pl-intro__advantage-label {
  color: var(--black-main, #333032);
  font-family: "Simpler", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (width > 768px) {
  .pl-intro__advantage-label {
    font-size: 2.2rem;
  }
}
.pl-intro__advantages-disclaimer {
  margin: 2.4rem 0 2rem;
  color: var(--black-60, #666);
  font-family: "Simpler", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
}
@media (width > 768px) {
  .pl-intro__advantages-disclaimer {
    margin: 5.4rem 0 0;
  }
}
